12 lines
658 B
Python
12 lines
658 B
Python
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'),
|
|
]
|