(
request: Request,
path_params: Dict = Depends(path_params_required),
auth_info: Dict = Depends(auth_info_required),
)
| 22 | operation_id="get_ui_collection", |
| 23 | ) |
| 24 | async def api_get_ui_collection( |
| 25 | request: Request, |
| 26 | path_params: Dict = Depends(path_params_required), |
| 27 | auth_info: Dict = Depends(auth_info_required), |
| 28 | ): |
| 29 | check_path_params( |
| 30 | model_operator=ops, |
| 31 | object_id_required=True, |
| 32 | path_params=path_params, |
| 33 | ) |
| 34 | |
| 35 | data = await ops.ui_get(**path_params) |
| 36 | return BaseDataResponse(data=data) |
| 37 | |
| 38 | |
| 39 | @router.get( |
nothing calls this directly
no test coverage detected