from django.urls import path
from . import views
from .api_views import get_notification_preferences, update_notification_preferences

urlpatterns = [
    path('inbox/', views.notification_inbox, name='notification_inbox'),
    path('preferences/', views.notification_preferences, name='notification_preferences'),
    path('', views.notification_list, name='notification_list'),
    path('view/<int:note_id>/', views.view_notification, name='view_notification'),


# ================================== For Android APP ========================================
    path('api/notification-preferences/', get_notification_preferences, name='get_notification_preferences'),
    path('api/notification-preferences/update/', update_notification_preferences, name='update_notification_preferences'),

]