Minor changes

This commit is contained in:
Scott Idem
2022-09-27 20:53:12 -04:00
parent cb50ae8089
commit a18388e841
9 changed files with 51 additions and 2 deletions

View File

@@ -140,6 +140,7 @@ async def patch_event_location_obj_exist_v4(
@router.get('/event/location/{event_location_id}', response_model=Resp_Body_Base)
async def get_event_location_obj(
event_location_id: str = Query(..., min_length=11, max_length=22),
inc_event_device_list: bool = False,
inc_event_file_list: bool = False,
inc_event_file_internal_use_list: bool = False,
inc_event_presentation_list: bool = False,
@@ -162,6 +163,7 @@ async def get_event_location_obj(
if event_location_obj := load_event_location_obj(
event_location_id = event_location_id,
inc_event_device_list = inc_event_device_list,
inc_event_file_list = inc_event_file_list,
inc_event_file_internal_use_list = inc_event_file_internal_use_list,
inc_event_presentation_list = inc_event_presentation_list,