from django.conf import settings
from django.contrib import admin
from django.urls import include, path
from django.conf.urls.static import static
from notifications import apis as Notifications

urlpatterns = [
    path("",Notifications.NotificationsView.as_view()),
    path("/read", Notifications.MarkNotificationReadView.as_view()),
    path("/read-all", Notifications.MarkAllNotificationsReadView.as_view()),
    path("/delete", Notifications.DeleteNotificationView.as_view()),
    path("/count", Notifications.NotificationCountView.as_view()),
]