implemented teams integration

This commit is contained in:
2026-02-20 16:46:44 +01:00
parent c956562722
commit d3ebffa811
12 changed files with 609 additions and 0 deletions

View File

@@ -76,6 +76,11 @@ class Settings(BaseSettings):
telegram_webhook_secret: str = "" # Random string to validate incoming webhooks
telegram_webhook_url: str = "" # Base URL of the app, e.g. https://app.example.com
# Microsoft Teams Bot
teams_enabled: bool = False
microsoft_app_id: str = ""
microsoft_app_secret: str = ""
model_config = SettingsConfigDict(
env_file=".env",
env_file_encoding="utf-8",