(
payload: UpdateRequest,
_auth: AuthContext = Depends(require_system_scope),
service: UpdateService = Depends(get_service),
)
| 136 | |
| 137 | @router.post("/updates/core") |
| 138 | async def update_core( |
| 139 | payload: UpdateRequest, |
| 140 | _auth: AuthContext = Depends(require_system_scope), |
| 141 | service: UpdateService = Depends(get_service), |
| 142 | ): |
| 143 | return await _run(lambda: service.update_project(_model_dict(payload))) |
| 144 | |
| 145 | |
| 146 | @legacy_router.post("/do") |
nothing calls this directly
no test coverage detected