mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 22:20:12 +00:00
7 lines
No EOL
232 B
Python
7 lines
No EOL
232 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'),
|
|
) |