mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-25 12:12:27 +02:00
18 lines
674 B
Python
18 lines
674 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'notifications'
|
|
# Notifications
|
|
urlpatterns = [
|
|
path('remove_notifications/<int:notif_id>/', views.remove_notification, name='remove'),
|
|
path('notifications/mark_all_read/', views.mark_all_read, name='mark_all_read'),
|
|
path('notifications/delete_all_read/', views.delete_all_read, name='delete_all_read'),
|
|
path('notifications/', views.notification_list, name='list'),
|
|
path('notifications/<int:notif_id>/', views.notification_view, name='view'),
|
|
path(
|
|
'user_notifications_count/<int:user_pk>/',
|
|
views.user_notifications_count,
|
|
name='user_notifications_count'
|
|
),
|
|
]
|