Skip to content

Commit

Permalink
Merge pull request #147 from hotosm/hotfix
Browse files Browse the repository at this point in the history
hotfix: projects list endpoint was missing requires_approval_from_manager
  • Loading branch information
nrjadkry authored Aug 14, 2024
2 parents 9542733 + 3a7beee commit b906cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app/projects/project_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async def get_projects(
):
"""Get all projects."""
raw_sql = """
SELECT id, slug, name, description, per_task_instructions, outline
SELECT id, slug, name, description, per_task_instructions, outline, requires_approval_from_manager_for_locking
FROM projects
ORDER BY created_at DESC
OFFSET :skip
Expand Down

0 comments on commit b906cdd

Please sign in to comment.