Lots of changes to get to FastAPI 95.1
This commit is contained in:
@@ -21,7 +21,7 @@ router = APIRouter()
|
||||
# ### BEGIN ### API Lookup ### get_lookup_li() ###
|
||||
@router.get('/{for_lookup_name}/list', response_model=Resp_Body_Base)
|
||||
async def get_lookup_li(
|
||||
for_lookup_name: Optional[str] = Query(None, min_length=2, max_length=50),
|
||||
for_lookup_name: Optional[str] = Path(min_length=2, max_length=50),
|
||||
account_id: Optional[str] = Query(None, min_length=11, max_length=50),
|
||||
for_type: Optional[str] = Query(None, min_length=2, max_length=50),
|
||||
inc_admin_options: bool = False,
|
||||
|
||||
Reference in New Issue
Block a user