from django.urls import path
from .views import auth
from api.v1.web.views.notifications import MarkAllNotificationsReadView, MarkNotificationReadView, UserDeviceTokenView, UserNotificationsView

urlpatterns = [
    path('auth/login', auth.MobileLoginView.as_view(), name='mobile-auth-login'),
    path('notifications/', UserNotificationsView.as_view(), name='mobile-notifications'),
    path('notifications/<uuid:notification_id>/read/', MarkNotificationReadView.as_view(), name='mobile-notification-read'),
    path('notifications/read-all/', MarkAllNotificationsReadView.as_view(), name='mobile-notifications-read-all'),
    path('notifications/devices/', UserDeviceTokenView.as_view(), name='mobile-notification-devices'),
]
