diff options
Diffstat (limited to 'comments/urls.py')
-rw-r--r-- | comments/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/comments/urls.py b/comments/urls.py new file mode 100644 index 0000000..c3a609a --- /dev/null +++ b/comments/urls.py @@ -0,0 +1,7 @@ +from django.conf.urls import patterns, include, url + +urlpatterns = patterns('', + url(r'^new/$', 'comments.views.new_comment', name='new_comment'), + url(r'^get/$', 'comments.views.get_comments', name='new_comment'), + url(r'^new-reply/$', 'comments.views.new_reply', name='new_reply'), +) |