(session: SessionDep, trans: Trans, token: str)
| 100 | |
| 101 | @router.post("/mcp_ws_list", operation_id="mcp_ws_list") |
| 102 | async def ws_list(session: SessionDep, trans: Trans, token: str): |
| 103 | session_user = get_user(session, token) |
| 104 | return await user_ws_options(session, session_user.id, trans) |
| 105 | |
| 106 | |
| 107 | @router.post("/mcp_ds_list", operation_id="mcp_datasource_list") |
nothing calls this directly
no test coverage detected