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//read/', notification_history.NotificationHistoryUpdateApiView.as_view()), ]