diff options
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r-- | hyperkitty/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index 2689413..9277922 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -79,6 +79,8 @@ urlpatterns = patterns('hyperkitty.views', 'thread.replies', name='thread_replies'), 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+)/suggest-tags$', + 'thread.suggest_tags', name='suggest_tags'), url(r'^list/(?P<mlist_fqdn>[^/@]+@[^/@]+)/thread/(?P<threadid>\w+)/favorite$', 'thread.favorite', name='favorite'), |