feat(auth): Update cookie management for refresh tokens

This commit is contained in:
Yunxiao Xu
2026-02-18 13:31:54 -08:00
parent 626b644740
commit 78265c399a
2 changed files with 25 additions and 5 deletions

View File

@@ -21,6 +21,7 @@ class Settings(BaseSettings):
log_level: str = Field(default="INFO", alias="LOG_LEVEL")
dev_mode: bool = Field(default=False, alias="DEV_MODE")
frontend_url: str = Field(default="http://localhost:5173", alias="FRONTEND_URL")
api_v1_str: str = "/api/v1"
# Voter Database configuration
db_host: str = Field(default="localhost", alias="DB_HOST")