Files
Backend/notifications/urls.py
T

8 lines
185 B
Python
Raw Normal View History

2026-04-03 23:51:00 +03:30
from django.urls import path
2026-04-05 00:57:25 +03:30
from .views import NotificationLongPollView
2026-04-03 23:51:00 +03:30
urlpatterns = [
2026-04-05 00:57:25 +03:30
path("long-poll/", NotificationLongPollView.as_view(), name="notification-long-poll"),
2026-04-03 23:51:00 +03:30
]