gestiojeux/accounts/urls.py
sinavir c01ed7cb47 style(pre-commit): Add hook
Python:
- black
- isort (black profile)
- ruff

Nix:
- statix
- nixfmt-rfc-style
- deadnix
2024-07-04 20:47:46 +02:00

15 lines
370 B
Python

from django.urls import include, path
from .views import AccountSettingsView, PasswordChangeView
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)),
]