11 lines
431 B
Python
11 lines
431 B
Python
from django.urls import path
|
|
|
|
from core.apps.notifications.views import notification
|
|
from core.apps.notifications.views import notification_history
|
|
|
|
|
|
urlpatterns = [
|
|
path('device/register/', notification.RegisterExpoPushToken.as_view()),
|
|
path('history/', notification_history.NotificationHistoryListApiView.as_view()),
|
|
path('history/<uuid:id>/read/', notification_history.NotificationHistoryUpdateApiView.as_view()),
|
|
] |