summaryrefslogtreecommitdiff
path: root/patchwork/urls.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-05-24 11:27:29 +0100
committerStephen Finucane <stephen@that.guru>2017-05-30 21:42:20 +0100
commit5b716d482f3b612421c422966edf31a40beb7d3e (patch)
treedd833daad4dc95a6758edf7f779006ab39429368 /patchwork/urls.py
parent35d696ea6c709cd154bc9910838d2e11b5c2652d (diff)
downloadpatchwork-5b716d482f3b612421c422966edf31a40beb7d3e.tar
patchwork-5b716d482f3b612421c422966edf31a40beb7d3e.tar.gz
views: Enable downloading of cover mboxes
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'patchwork/urls.py')
-rw-r--r--patchwork/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/patchwork/urls.py b/patchwork/urls.py
index 1871c9a..be996c0 100644
--- a/patchwork/urls.py
+++ b/patchwork/urls.py
@@ -61,6 +61,8 @@ urlpatterns = [
# cover views
url(r'^cover/(?P<cover_id>\d+)/$', cover_views.cover_detail,
name='cover-detail'),
+ url(r'^cover/(?P<cover_id>\d+)/mbox/$', cover_views.cover_mbox,
+ name='cover-mbox'),
# comment views
url(r'^comment/(?P<comment_id>\d+)/$', comment_views.comment,