Fix: Tilføjet manglende VTIGER_ENABLED og ECONOMIC_ENABLED fields i Settings

This commit is contained in:
Christian 2025-12-22 11:44:13 +01:00
parent 187b72238d
commit af6e868828

View File

@ -30,6 +30,7 @@ class Settings(BaseSettings):
LOG_FILE: str = "logs/app.log"
# e-conomic Integration
ECONOMIC_ENABLED: bool = False
ECONOMIC_API_URL: str = "https://restapi.e-conomic.com"
ECONOMIC_APP_SECRET_TOKEN: str = ""
ECONOMIC_AGREEMENT_GRANT_TOKEN: str = ""
@ -69,6 +70,7 @@ class Settings(BaseSettings):
EMAIL_WORKFLOWS_ENABLED: bool = True
# vTiger Cloud Integration
VTIGER_ENABLED: bool = False
VTIGER_URL: str = ""
VTIGER_USERNAME: str = ""
VTIGER_API_KEY: str = ""