Files
Backend/notifications/urls.py
T
2026-04-05 00:57:25 +03:30

8 lines
185 B
Python

from django.urls import path
from .views import NotificationLongPollView
urlpatterns = [
path("long-poll/", NotificationLongPollView.as_view(), name="notification-long-poll"),
]