Jarvis/jarvis/profiles/urls.py

18 lines
508 B
Python
Raw Normal View History

2023-04-25 17:06:14 +02:00
"""URLs définissant la gestion des profils utilisateurs."""
from django.urls import path
from . import views
profile_urlpatterns = [
path(r"edit/", views.profile_update, name="profile_update"),
# path(
# r"notification_update/", views.notification_update, name="notification_update"
# ),
# path(r"notification_add/", views.notification_add, name="notification_add"),
# path(
# r"notification_remove/", views.notification_remove, name="notification_remove"
# ),
2023-04-25 17:06:14 +02:00
]