Added Ability to Delete Notifications

This commit is contained in:
orbitroom
2016-02-23 19:41:32 -05:00
parent 974698fe2c
commit 11b1f2fb0e
3 changed files with 22 additions and 0 deletions

View File

@@ -189,4 +189,5 @@ urlpatterns = patterns('',
# Notifications
url(r'^notifications/$', 'notifications.views.notification_list', name='auth_notification_list'),
url(r'^notifications/(\w+)/$', 'notifications.views.notification_view', name='auth_notification_view'),
url(r'^remove_notifications/(\w+)', 'notifications.views.remove_notification', name='auth_remove_notification'),
)