summaryrefslogtreecommitdiff
path: root/notification/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'notification/urls.py')
-rw-r--r--notification/urls.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/notification/urls.py b/notification/urls.py
new file mode 100644
index 0000000..dd36972
--- /dev/null
+++ b/notification/urls.py
@@ -0,0 +1,12 @@
+from django.conf.urls.defaults import *
+
+from notification.views import notices, mark_all_seen, feed_for_user, single, notice_settings
+
+
+urlpatterns = patterns("",
+ url(r"^$", notices, name="notification_notices"),
+ url(r"^settings/$", notice_settings, name="notification_notice_settings"),
+ url(r"^(\d+)/$", single, name="notification_notice"),
+ url(r"^feed/$", feed_for_user, name="notification_feed_for_user"),
+ url(r"^mark_all_seen/$", mark_all_seen, name="notification_mark_all_seen"),
+)