18 lines
392 B
Python
18 lines
392 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "manage_notifications_api"
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"toggle-notification-setting/",
|
|
views.NotificationSettingToggle.as_view(),
|
|
name="toggle-notification-setting",
|
|
),
|
|
path(
|
|
"user-notifications/",
|
|
views.UserNotificationsAPIView.as_view(),
|
|
name="user-notifications",
|
|
),
|
|
]
|