gestiojeux/accounts/urls.py
sinavir fee31ab07b feat: switch to authens
Be careful there is no User migration
2024-07-04 18:15:57 +02:00

13 lines
369 B
Python

from django.urls import include, path
from .views import PasswordChangeView, AccountSettingsView
app_name = "accounts"
accounts_patterns = [
path("change_password/", PasswordChangeView.as_view(), name="change_password"),
path("settings/", AccountSettingsView.as_view(), name="account_settings"),
]
urlpatterns = [
path("", include(accounts_patterns)),
]