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 618ae1d5..30002bf3 100644
--- a/group_messaging/urls.py
+++ b/group_messaging/urls.py
@@ -23,5 +23,10 @@ urlpatterns = patterns('',
'^senders/$',
views.SendersList().as_view(),
name='get_senders'
+ ),
+ url(
+ '^post-reply/$',
+ views.PostReply().as_view(),
+ name='post_reply'
)
)