DocManagerBackend/docmanager_backend/notifications/urls.py

10 lines
239 B
Python

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