summaryrefslogtreecommitdiffstats
path: root/hyperkitty/urls.py
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-08-10 06:21:15 +0530
committerAamir Khan <syst3m.w0rm@gmail.com>2012-08-10 06:21:15 +0530
commite5dc1c48ea48177e21cff6670a2dbf0c4c4cf262 (patch)
tree8dd57320e742394034515158c013915595877c1a /hyperkitty/urls.py
parent6da4589cf562033fba6e1f5d910a28dbe39dc313 (diff)
downloadhyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.gz
hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.tar.xz
hyperkitty-e5dc1c48ea48177e21cff6670a2dbf0c4c4cf262.zip
Feature : Add tag to email threads
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 ebf757a..a1a711a 100644
--- a/hyperkitty/urls.py
+++ b/hyperkitty/urls.py
@@ -59,7 +59,7 @@ urlpatterns = patterns('hyperkitty.views',
### MESSAGE LEVEL VIEWS ###
# Vote a message
url(r'^message/(?P<mlist_fqdn>.*@.*)/(?P<messageid>.+)/$',
- 'message.index'),
+ 'message.index', name='message_index'),
url(r'^vote/(?P<mlist_fqdn>.*@.*)/$',
'message.vote', name='message_vote'),
@@ -74,7 +74,7 @@ urlpatterns = patterns('hyperkitty.views',
# Add Tag to a thread
url(r'^addtag/(?P<mlist_fqdn>.*@.*)\/(?P<email_id>.*)/$',
- 'thread.add_tag'),
+ 'thread.add_tag', name='add_tag'),
### THREAD LEVEL VIEW ENDS ###