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