Files
Backend/auth/urls.py
T
2026-02-19 01:19:22 +03:30

10 lines
238 B
Python

from django.urls import path
from .views import AuthenticationView
urlpatterns = [
path("request-otp/", AuthenticationView.as_view(), name="request-otp"),
path("verify-otp/", AuthenticationView.as_view(), name="verify-otp"),
]