summaryrefslogtreecommitdiff
path: root/pgcommitfest/urls.py
diff options
context:
space:
mode:
authorMagnus Hagander2014-04-28 16:04:52 +0000
committerMagnus Hagander2014-04-28 16:04:52 +0000
commita059717d3c831afe047a3ecda8e2610eb0e6fd57 (patch)
treedf49b4fac472388de89827313c01302d659aff89 /pgcommitfest/urls.py
parent4a4e8c46ec9834c43b0a0705905d5ee12574694a (diff)
Add support for (bulk) emailing
CF managers can now email authors and reviewers both individually on a patch, and in the full set of search results.
Diffstat (limited to 'pgcommitfest/urls.py')
-rw-r--r--pgcommitfest/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pgcommitfest/urls.py b/pgcommitfest/urls.py
index 488041d..b9e063c 100644
--- a/pgcommitfest/urls.py
+++ b/pgcommitfest/urls.py
@@ -16,6 +16,8 @@ urlpatterns = patterns('',
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'^(\d+)/send_email/$', 'commitfest.views.send_email'),
+ url(r'^(\d+)/\d+/send_email/$', 'commitfest.views.send_email'),
url(r'^ajax/(\w+)/$', 'commitfest.ajax.main'),
url(r'^selectable/', include('selectable.urls')),