summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-13 15:50:12 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-13 17:46:33 +0200
commit56d884568d52d42c6a18905fb7b2f004b1a6b296 (patch)
tree50307dfee6a15af3632509d44b0471608e512d86 /hyperkitty/urls.py
parent8a8b9f5a0b174225230c2ddb2dc9a0cecb33208e (diff)
downloadhyperkitty-56d884568d52d42c6a18905fb7b2f004b1a6b296.tar.gz
hyperkitty-56d884568d52d42c6a18905fb7b2f004b1a6b296.tar.xz
hyperkitty-56d884568d52d42c6a18905fb7b2f004b1a6b296.zip
A user can remove the tags he added
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r--hyperkitty/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py
index 10143b1..2689413 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -77,8 +77,8 @@ urlpatterns = patterns('hyperkitty.views',
'thread.thread_index', name='thread'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/replies$',
'thread.replies', name='thread_replies'),
- url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/addtag$',
- 'thread.add_tag', name='add_tag'),
+ url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/tags$',
+ 'thread.tags', name='tags'),
url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/favorite$',
'thread.favorite', name='favorite'),