Update url schema

This commit is contained in:
Mr McClain 2016-02-24 12:06:55 -06:00
parent ca3e16c342
commit 80e8f9ca4d

View File

@ -189,5 +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'),
url(r'^remove_notifications/(\w+)/$', 'notifications.views.remove_notification', name='auth_remove_notification'),
)