DocManagerBackend/docmanager_backend/notifications/urls.py

11 lines
239 B
Python
Raw Permalink Normal View History

2025-01-21 13:57:31 +08:00
from django.urls import path
from .views import (
NotificationListView,
NotificationDeleteView
)
urlpatterns = [
path("list/", NotificationListView.as_view()),
path("delete/<int:pk>/", NotificationDeleteView.as_view()),
]