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