mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-02-23 22:48:14 +08:00
11 lines
239 B
Python
11 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()),
|
||
|
]
|