(session: SessionDep, id: int = Path(..., description=f"{PLACEHOLDER_PREFIX}ds_id"))
| 112 | @router.post("/getTables/{id}", response_model=List[TableSchemaResponse], summary=f"{PLACEHOLDER_PREFIX}ds_get_tables") |
| 113 | @require_permissions(permission=SqlbotPermission(type='ds', keyExpression="id")) |
| 114 | async def get_tables(session: SessionDep, id: int = Path(..., description=f"{PLACEHOLDER_PREFIX}ds_id")): |
| 115 | return getTables(session, id) |
| 116 | |
| 117 | |
| 118 | @router.post("/getTablesByConf", response_model=List[TableSchemaResponse], summary=f"{PLACEHOLDER_PREFIX}ds_get_tables") |
nothing calls this directly
no test coverage detected