summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest/views.py
diff options
context:
space:
mode:
authorMagnus Hagander2021-10-04 12:55:14 +0000
committerMagnus Hagander2021-10-04 12:55:14 +0000
commitc4041b26bb73a6269942812caf9621f42292ec37 (patch)
treeb685719cec4a3af60306acc1638140d8c483a4f2 /pgcommitfest/commitfest/views.py
parent65073ba7614ba539aff961e59c9eddbbb8d095f9 (diff)
Properly allow moving of WoA patches to next CF
The previous commit removed the refusal, but missed adding the allwing..
Diffstat (limited to 'pgcommitfest/commitfest/views.py')
-rw-r--r--pgcommitfest/commitfest/views.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py
index c55096a..e348692 100644
--- a/pgcommitfest/commitfest/views.py
+++ b/pgcommitfest/commitfest/views.py
@@ -549,6 +549,7 @@ def close(request, cfid, patchid, status):
messages.error(request, "A patch in status {0} cannot be moved to next commitfest.".format(poc.statusstring))
return HttpResponseRedirect('/%s/%s/' % (poc.commitfest.id, poc.patch.id))
elif poc.status in (PatchOnCommitFest.STATUS_REVIEW,
+ PatchOnCommitFest.STATUS_AUTHOR,
PatchOnCommitFest.STATUS_COMMITTER):
# This one can be moved
pass