from django.urls import path, re_path from GestionNotification.views import NotificationView urlpatterns = [ re_path(r'^notifications$', NotificationView.as_view(), name="notifications"), ]