Syntax fixes

This commit is contained in:
Hannah dagemark 2026-08-09 15:19:01 +02:00
commit a87ed0b0f3
2 changed files with 4 additions and 5 deletions

View file

@ -19,13 +19,11 @@ def get_default():
@router.get("/all")
def get_all_projects(parent: int | None = None):
if parent:
return get_with_parent(parent)
def get_all_projects():
return get_all()
@router.get("/project/{project_id}")
@router.get("/{project_id}")
def get_project_by_id(project_id: int):
return get_by_id(project_id)