Return a boolean directly from API endpoint for project locked status

This commit is contained in:
grossmj 2022-09-03 23:08:13 +02:00
parent 27debfff8d
commit 2976e220dc
2 changed files with 3 additions and 3 deletions

View File

@ -396,12 +396,12 @@ async def duplicate_project(
@router.get("/{project_id}/locked") @router.get("/{project_id}/locked")
async def locked_project(project: Project = Depends(dep_project)) -> dict: async def locked_project(project: Project = Depends(dep_project)) -> bool:
""" """
Returns whether a project is locked or not Returns whether a project is locked or not
""" """
return {"result": project.locked} return project.locked
@router.post("/{project_id}/lock", status_code=status.HTTP_204_NO_CONTENT) @router.post("/{project_id}/lock", status_code=status.HTTP_204_NO_CONTENT)

View File

@ -513,7 +513,7 @@ async def test_lock_unlock(app: FastAPI, client: AsyncClient, project: Project,
response = await client.get(app.url_path_for("locked_project", project_id=project.id)) response = await client.get(app.url_path_for("locked_project", project_id=project.id))
assert response.status_code == status.HTTP_200_OK assert response.status_code == status.HTTP_200_OK
assert response.json()["result"] is True assert response.json() is True
response = await client.post(app.url_path_for("unlock_project", project_id=project.id)) response = await client.post(app.url_path_for("unlock_project", project_id=project.id))
assert response.status_code == status.HTTP_204_NO_CONTENT assert response.status_code == status.HTTP_204_NO_CONTENT