refactor: Modification de l'url de l'api Auth

This commit is contained in:
Luc SORIGNET
2025-02-13 17:06:09 +01:00
parent 8b3f9637a9
commit 9bf9c5f62d
7 changed files with 52 additions and 75 deletions

View File

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