Remove unnecessary summary for add project

This commit is contained in:
linuskmr 2021-12-25 18:34:56 +01:00
parent 8b79f7fca4
commit 15ef4c03d1

View file

@ -22,7 +22,7 @@ async def all_projects(
return projects return projects
@router.post("/", status_code=status.HTTP_201_CREATED, summary="Add a project", response_model=ProjectRead) @router.post("/", status_code=status.HTTP_201_CREATED, response_model=ProjectRead)
async def add_project( async def add_project(
*, *,
project: ProjectCreate, project: ProjectCreate,