(session: SessionDep, trans: Trans,
id: int = Path(..., description=f"{PLACEHOLDER_PREFIX}ds_table_id"))
| 165 | @router.post("/syncFields/{id}", response_model=None, summary=f"{PLACEHOLDER_PREFIX}ds_sync_fields") |
| 166 | @require_permissions(permission=SqlbotPermission(role=['ws_admin'])) |
| 167 | async def sync_fields(session: SessionDep, trans: Trans, |
| 168 | id: int = Path(..., description=f"{PLACEHOLDER_PREFIX}ds_table_id")): |
| 169 | return sync_single_fields(session, trans, id) |
| 170 | |
| 171 | |
| 172 | from pydantic import BaseModel |
nothing calls this directly
no test coverage detected