mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-30 02:07:02 -05:00
feat: Implement MFA authentication, add ride statistics model, and update various services, APIs, and tests across the application.
This commit is contained in:
@@ -73,6 +73,38 @@ SOCIALACCOUNT_LOGIN_ON_GET = True
|
||||
SOCIALACCOUNT_AUTO_SIGNUP = False
|
||||
SOCIALACCOUNT_STORE_TOKENS = True
|
||||
|
||||
# =============================================================================
|
||||
# MFA (Multi-Factor Authentication) Configuration
|
||||
# =============================================================================
|
||||
# https://docs.allauth.org/en/latest/mfa/index.html
|
||||
|
||||
# Supported authenticator types
|
||||
MFA_SUPPORTED_TYPES = ["totp"]
|
||||
|
||||
# TOTP settings
|
||||
MFA_TOTP_ISSUER = config("MFA_TOTP_ISSUER", default="ThrillWiki")
|
||||
|
||||
# Number of digits for TOTP codes (default is 6)
|
||||
MFA_TOTP_DIGITS = 6
|
||||
|
||||
# Interval in seconds for TOTP code generation (default 30)
|
||||
MFA_TOTP_PERIOD = 30
|
||||
|
||||
# =============================================================================
|
||||
# Login By Code (Magic Link) Configuration
|
||||
# =============================================================================
|
||||
# https://docs.allauth.org/en/latest/account/configuration.html#login-by-code
|
||||
|
||||
# Enable magic link / login by code feature
|
||||
ACCOUNT_LOGIN_BY_CODE_ENABLED = config("ACCOUNT_LOGIN_BY_CODE_ENABLED", default=True, cast=bool)
|
||||
|
||||
# Maximum attempts to enter the code
|
||||
ACCOUNT_LOGIN_BY_CODE_MAX_ATTEMPTS = config("ACCOUNT_LOGIN_BY_CODE_MAX_ATTEMPTS", default=3, cast=int)
|
||||
|
||||
# Code expiration timeout in seconds (5 minutes default)
|
||||
ACCOUNT_LOGIN_BY_CODE_TIMEOUT = config("ACCOUNT_LOGIN_BY_CODE_TIMEOUT", default=300, cast=int)
|
||||
|
||||
|
||||
# =============================================================================
|
||||
# Celery Configuration
|
||||
# =============================================================================
|
||||
@@ -194,7 +226,7 @@ TURNSTILE_SECRET = config("TURNSTILE_SECRET", default="")
|
||||
|
||||
# Skip Turnstile validation in development if keys not set
|
||||
TURNSTILE_SKIP_VALIDATION = config(
|
||||
"TURNSTILE_SKIP_VALIDATION",
|
||||
"TURNSTILE_SKIP_VALIDATION",
|
||||
default=not TURNSTILE_SECRET, # Skip if no secret
|
||||
cast=bool
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user