mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
8 lines
No EOL
321 B
Python
8 lines
No EOL
321 B
Python
from django.conf.urls import url, patterns
|
|
from apps.notifications import views
|
|
from oauth2_provider import views as op_views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', views.notifications_by_feed, name='notifications-by-feed'),
|
|
url(r'^feed/?$', views.set_notifications_for_feed, name='set-notifications-for-feed'),
|
|
) |