d5377e94eb
Django backend that listens to the relay SSE global stream and dispatches APNs push notifications to subscribed iOS devices (TestFlight/sandbox).
9 lines
256 B
Python
9 lines
256 B
Python
from django.urls import path
|
|
|
|
from app.subscriptions.views import SubscribeView, UnsubscribeView
|
|
|
|
urlpatterns = [
|
|
path("subscribe/", SubscribeView.as_view(), name="subscribe"),
|
|
path("unsubscribe/", UnsubscribeView.as_view(), name="unsubscribe"),
|
|
]
|