from django.urls import path from .views import CheckNotifications, GetBasicNotifications, ShowAllNotifications, ChangeNotificationsToViewed, delAllNotification, delSingleNotification urlpatterns = [ path('checknotifications/', CheckNotifications, name='checknotifications'), path('getnotifications/', GetBasicNotifications, name='getnotifications'), path('showallnotificaions/', ShowAllNotifications, name='showallnotificaions'), path('newnotificationsviewed/', ChangeNotificationsToViewed, name='newnotificationsviewed'), path('delsingle/', delSingleNotification, name='delsinglenotification'), path('delall/', delAllNotification, name='delall'), ]