mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-23 13:48:20 +00:00
11 lines
399 B
Python
11 lines
399 B
Python
|
from django.conf.urls.defaults import patterns, url
|
||
|
|
||
|
urlpatterns = patterns('notifications.views',
|
||
|
# url(r'^$', 'notification_list', name='notification_list'),
|
||
|
url(r'^add/$', 'notification_add', name='notification_add'),
|
||
|
url(r'^delete/(?P<nid>[\d]+)/$', 'notification_delete', name='notification_delete'),
|
||
|
url(r'^set-primary/(?P<nid>[\d]+)/$', 'set_primary', name='set_primary'),
|
||
|
)
|
||
|
|
||
|
|