summaryrefslogtreecommitdiffstats
path: root/group_messaging/urls.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-25 04:43:25 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-25 04:43:25 -0400
commit74c55ff1382cc11eaa822bb0bf011ddd85797403 (patch)
tree0ad7a18b1b2d2087bfef293ee43b41032fd93e15 /group_messaging/urls.py
parent27c52cc8c52157d539bb3c761a53d1b6192c8b64 (diff)
downloadaskbot-74c55ff1382cc11eaa822bb0bf011ddd85797403.tar.gz
askbot-74c55ff1382cc11eaa822bb0bf011ddd85797403.tar.bz2
askbot-74c55ff1382cc11eaa822bb0bf011ddd85797403.zip
private message navigation starts to work
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'