Files
n3wt-school/Back-End/GestionNotification/urls.py
2025-02-13 17:06:09 +01:00

7 lines
195 B
Python

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