Skip to content

Commit 75b5fb4

Browse files
committed
added returned with feedback to not in filter
1 parent f0f6ebc commit 75b5fb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pgcommitfest/commitfest/views.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def me(request):
9595
INNER JOIN commitfest_patch p ON p.id = poc.patch_id
9696
INNER JOIN commitfest_patchstatus ps ON ps.status=poc.status
9797
WHERE
98-
ps.status NOT IN ( %(patch_stat_committed)s, %(patch_stat_rejected)s, %(patch_stat_withdrawn)s, %(patch_stat_nextcf)s )
98+
ps.status NOT IN ( %(patch_stat_committed)s, %(patch_stat_rejected)s, %(patch_stat_withdrawn)s, %(patch_stat_nextcf)s, %(patch_stat_retwfdb)s )
9999
AND (
100100
EXISTS (
101101
SELECT 1 FROM commitfest_patch_reviewers cpr WHERE cpr.patch_id=p.id AND cpr.user_id=%(user_id)s
@@ -111,6 +111,7 @@ def me(request):
111111
"patch_stat_rejected": PatchOnCommitFest.STATUS_REJECTED,
112112
"patch_stat_withdrawn": PatchOnCommitFest.STATUS_WITHDRAWN,
113113
"patch_stat_nextcf": PatchOnCommitFest.STATUS_NEXT,
114+
"patch_stat_retwfdb": PatchOnCommitFest.STATUS_RETURNED,
114115
},
115116
)
116117
statussummary = curs.fetchall()

0 commit comments

Comments
 (0)