mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
7 lines
195 B
Python
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"),
|
|
] |