from django.urls import path from .views import ( NotificationListView, NotificationDeleteView ) urlpatterns = [ path("list/", NotificationListView.as_view()), path("delete//", NotificationDeleteView.as_view()), ]