Learning-Management-System/lms/accounts/urls.py
Ahmed Nagi e58c9c1f71 Update
2025-01-10 19:54:55 +02:00

5 lines
154 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("change-email/", views.CustomConfirmEmailView.as_view(), name="change-email")
]