From 63db25bb5e1a2605c7a2fdaabcba32422191f70b Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 18 Jul 2013 13:46:46 +0200 Subject: Add a page to reattach a broken thread --- hyperkitty/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hyperkitty/urls.py') diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index 44a6fdb..9dfe63c 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -86,6 +86,10 @@ urlpatterns = patterns('hyperkitty.views', 'thread.favorite', name='favorite'), url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/category$', 'thread.set_category', name='thread_set_category'), + url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/reattach$', + 'thread.reattach', name='thread_reattach'), + url(r'^list/(?P[^/@]+@[^/@]+)/thread/(?P\w+)/reattach-suggest$', + 'thread.reattach_suggest', name='thread_reattach_suggest'), # Search -- cgit