11 lines
200 B
Python
11 lines
200 B
Python
"""passbook OTP Settings"""
|
|
|
|
MIDDLEWARE = [
|
|
"django_otp.middleware.OTPMiddleware",
|
|
]
|
|
INSTALLED_APPS = [
|
|
"django_otp",
|
|
"django_otp.plugins.otp_static",
|
|
"django_otp.plugins.otp_totp",
|
|
]
|