MCPcopy
hub / github.com/TaskingAI/TaskingAI / api_get_ui_collection

Function api_get_ui_collection

backend/app/routes/ui/collection.py:24–36  ·  view source on GitHub ↗
(
    request: Request,
    path_params: Dict = Depends(path_params_required),
    auth_info: Dict = Depends(auth_info_required),
)

Source from the content-addressed store, hash-verified

22 operation_id="get_ui_collection",
23)
24async 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(

Callers

nothing calls this directly

Calls 3

check_path_paramsFunction · 0.90
BaseDataResponseClass · 0.90
ui_getMethod · 0.45

Tested by

no test coverage detected