Files
ibapp-backend/core/apps/notifications/urls.py
2025-10-30 16:17:25 +05:00

11 lines
431 B
Python

from django.urls import path
from core.apps.notifications.views import notification
from core.apps.notifications.views import notification_history
urlpatterns = [
path('device/register/', notification.RegisterExpoPushToken.as_view()),
path('history/', notification_history.NotificationHistoryListApiView.as_view()),
path('history/<uuid:id>/read/', notification_history.NotificationHistoryUpdateApiView.as_view()),
]