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 eb033751..618ae1d5 100644
--- a/group_messaging/urls.py
+++ b/group_messaging/urls.py
@@ -10,6 +10,11 @@ urlpatterns = patterns('',
name='get_threads'
),
url(
+ '^threads/(?P<thread_id>\d+)/$',
+ views.ThreadDetails().as_view(),
+ name='thread_details'
+ ),
+ url(
'^threads/create/$',
views.NewThread().as_view(),
name='create_thread'