API endpoint to get the locked status of a project

This commit is contained in:
grossmj
2022-09-03 22:58:44 +02:00
parent 3014bd0216
commit 27debfff8d
3 changed files with 29 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import logging
log = logging.getLogger()
from fastapi import APIRouter, Depends, Request, Response, Body, HTTPException, status, WebSocket, WebSocketDisconnect
from fastapi import APIRouter, Depends, Request, Body, HTTPException, status, WebSocket, WebSocketDisconnect
from fastapi.encoders import jsonable_encoder
from fastapi.responses import StreamingResponse, FileResponse
from websockets.exceptions import ConnectionClosed, WebSocketException
@ -395,6 +395,15 @@ async def duplicate_project(
return new_project.asdict()
@router.get("/{project_id}/locked")
async def locked_project(project: Project = Depends(dep_project)) -> dict:
"""
Returns whether a project is locked or not
"""
return {"result": project.locked}
@router.post("/{project_id}/lock", status_code=status.HTTP_204_NO_CONTENT)
async def lock_project(project: Project = Depends(dep_project)) -> None:
"""