This commit is contained in:
2026-04-05 00:57:25 +03:30
parent 6d5ece1f5d
commit 32dbbed1af
26 changed files with 825 additions and 291 deletions
+2 -3
View File
@@ -1,8 +1,7 @@
from django.urls import path
from .views import NotificationPublishView, NotificationStreamView
from .views import NotificationLongPollView
urlpatterns = [
path("stream/", NotificationStreamView.as_view(), name="notifications-stream"),
path("publish/", NotificationPublishView.as_view(), name="notifications-publish"),
path("long-poll/", NotificationLongPollView.as_view(), name="notification-long-poll"),
]