Files
Backend/notifications/urls.py
T
2026-04-03 23:51:00 +03:30

9 lines
287 B
Python

from django.urls import path
from .views import NotificationPublishView, NotificationStreamView
urlpatterns = [
path("stream/", NotificationStreamView.as_view(), name="notifications-stream"),
path("publish/", NotificationPublishView.as_view(), name="notifications-publish"),
]