Skip to content

Commit 18c0659

Browse files
thenav56tnagorra
authored andcommitted
feat(public): show PAUSED projects in public endpoint
1 parent 71b58fc commit 18c0659

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/project/graphql/queries.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,9 @@ def public_projects(
155155
) -> QuerySet[Project]:
156156
return Project.objects.filter(
157157
status__in=[
158-
Project.Status.FINISHED,
159158
Project.Status.PUBLISHED,
159+
Project.Status.PAUSED,
160+
Project.Status.FINISHED,
160161
],
161162
).all()
162163

0 commit comments

Comments
 (0)