Files
django_wallet/aseusers/urls.py
2025-02-01 19:16:33 +01:00

12 lines
536 B
Python

from django.urls import path
from aseusers.views import *
urlpatterns = [
path('', profile_view, name="profile"),
path('edit/', profile_edit_view, name="profile-edit"),
path('onboarding/', profile_edit_view, name="profile-onboarding"),
path('settings/', profile_settings_view, name="profile-settings"),
path('emailchange/', profile_emailchange, name="profile-emailchange"),
path('emailverify/', profile_emailverify, name="profile-emailverify"),
path('delete/', profile_delete_view, name="profile-delete"),
]