2020-06-11 04:34:16 -04:00
|
|
|
from django.conf.urls import url
|
2016-11-14 19:26:09 -08:00
|
|
|
from apps.notifications import views
|
|
|
|
from oauth2_provider import views as op_views
|
|
|
|
|
2020-06-11 04:34:16 -04:00
|
|
|
urlpatterns = [
|
2016-11-15 18:18:31 -08:00
|
|
|
url(r'^$', views.notifications_by_feed, name='notifications-by-feed'),
|
|
|
|
url(r'^feed/?$', views.set_notifications_for_feed, name='set-notifications-for-feed'),
|
2016-11-17 19:53:02 -08:00
|
|
|
url(r'^apns_token/?$', views.set_apns_token, name='set-apns-token'),
|
2016-11-18 16:24:54 -08:00
|
|
|
url(r'^android_token/?$', views.set_android_token, name='set-android-token'),
|
2016-11-21 17:22:16 -08:00
|
|
|
url(r'^force_push/?$', views.force_push, name='force-push-notification'),
|
2020-06-11 04:34:16 -04:00
|
|
|
]
|