diff options
author | Magnus Hagander | 2014-04-22 11:59:12 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-04-22 11:59:12 +0000 |
commit | 084a37e4ddd51109dfb9977d585bb35872155bbf (patch) | |
tree | 249574ff4ad42f281fe096d01aadfb9bdfc3125b /pgcommitfest/urls.py | |
parent | c66975fcaecc4b87d70e75935d0fffb50d86bf3a (diff) |
Add support for claiming and unclaiming as committer
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r-- | pgcommitfest/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py index 7eb3576..488041d 100644 --- a/pgcommitfest/urls.py +++ b/pgcommitfest/urls.py @@ -14,6 +14,7 @@ urlpatterns = patterns('', url(r'^(\d+)/(\d+)/status/(review|author|committer)/$', 'commitfest.views.status'), url(r'^(\d+)/(\d+)/close/(reject|feedback|committed)/$', 'commitfest.views.close'), url(r'^(\d+)/(\d+)/reviewer/(become|remove)/$', 'commitfest.views.reviewer'), + url(r'^(\d+)/(\d+)/committer/(become|remove)/$', 'commitfest.views.committer'), url(r'^(\d+)/(\d+)/(comment|review)/', 'commitfest.views.comment'), url(r'^ajax/(\w+)/$', 'commitfest.ajax.main'), |