This commit is contained in:
2026-04-05 04:20:58 +03:30
parent df15d03d7c
commit ec8e72737b
6 changed files with 163 additions and 25 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from django.urls import path
from .views import NotificationLongPollView
from .views import NotificationLongPollView, NotificationMarkReadView
urlpatterns = [
path("long-poll/", NotificationLongPollView.as_view(), name="notification-long-poll"),
path("mark-as-read/", NotificationMarkReadView.as_view(), name="notification-mark-as-read"),
]