summaryrefslogtreecommitdiffstats
path: root/group_messaging/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'group_messaging/urls.py')
-rw-r--r--group_messaging/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/group_messaging/urls.py b/group_messaging/urls.py
index 30002bf3..19ee35bb 100644
--- a/group_messaging/urls.py
+++ b/group_messaging/urls.py
@@ -15,6 +15,11 @@ urlpatterns = patterns('',
name='thread_details'
),
url(
+ '^threads/(?P<thread_id>\d+)/delete-or-restore/$',
+ views.DeleteOrRestoreThread().as_view(),
+ name='delete_or_restore_thread'
+ ),
+ url(
'^threads/create/$',
views.NewThread().as_view(),
name='create_thread'