mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-22 11:21:54 +00:00
Added url to mark as unread too
Forgot to pull that when added mark as unread on view
This commit is contained in:
parent
a73c01f167
commit
a87043b5b0
1 changed files with 2 additions and 1 deletions
|
|
@ -7,4 +7,5 @@ urlpatterns = patterns('notifications.views',
|
|||
url(r'^unread/$', 'unread', name='unread'),
|
||||
url(r'^mark-all-as-read/$', 'mark_all_as_read', name='mark_all_as_read'),
|
||||
url(r'^mark-as-read/(?P<slug>\d+)/$', 'mark_as_read', name='mark_as_read'),
|
||||
)
|
||||
url(r'^mark-as-unread/(?P<slug>\d+)/$', 'mark_as_unread', name='mark_as_unread'),
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue