kumidc/authentication/urls/otp.py
2022-08-04 13:15:10 +02:00

9 lines
156 B
Python

from django.urls import path
from ..views.otp import TOTPLoginView
urlpatterns = [
path('login/totp/', TOTPLoginView.as_view(), name="totplogin"),
]