""" Notification URLs for KeepItGoing. """ from django.urls import path from . import views # API URLs (to be included under /api/notifications/) api_urlpatterns = [ path('', views.NotificationListAPIView.as_view(), name='api-notification-list'), path('/read/', views.mark_read, name='api-notification-read'), path('read-all/', views.mark_all_read, name='api-notification-read-all'), path('unread-count/', views.unread_count, name='api-notification-unread-count'), path('/', views.delete_notification, name='api-notification-delete'), ]