2020-06-11 04:34:16 -04:00
|
|
|
from django.conf.urls import url
|
2016-11-14 19:26:09 -08:00
|
|
|
from oauth2_provider import views as op_views
|
|
|
|
|
2024-04-24 09:50:42 -04:00
|
|
|
from apps.notifications import views
|
|
|
|
|
2020-06-11 04:34:16 -04:00
|
|
|
urlpatterns = [
|
2024-04-24 09:43:56 -04:00
|
|
|
url(r"^$", views.notifications_by_feed, name="notifications-by-feed"),
|
|
|
|
url(r"^feed/?$", views.set_notifications_for_feed, name="set-notifications-for-feed"),
|
|
|
|
url(r"^apns_token/?$", views.set_apns_token, name="set-apns-token"),
|
|
|
|
url(r"^android_token/?$", views.set_android_token, name="set-android-token"),
|
|
|
|
url(r"^force_push/?$", views.force_push, name="force-push-notification"),
|
|
|
|
]
|