feat: update local authentication mode to require a non-placeholder token of at least 50 characters
This commit is contained in:
12
backend/app/core/auth_mode.py
Normal file
12
backend/app/core/auth_mode.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""Shared auth-mode enum values."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class AuthMode(str, Enum):
|
||||
"""Supported authentication modes for backend and frontend."""
|
||||
|
||||
CLERK = "clerk"
|
||||
LOCAL = "local"
|
||||
Reference in New Issue
Block a user