From 3a3d81cf4c590ab97339ac7bc3435ad94b3246c5 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 2 Jan 2026 02:02:44 +0100 Subject: [PATCH] Add Mattermost notification settings --- VERSION | 2 +- app/core/config.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 94705af..51559dc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.68 \ No newline at end of file +1.3.69 \ No newline at end of file diff --git a/app/core/config.py b/app/core/config.py index e1ed2a0..0f67dac 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -115,6 +115,10 @@ class Settings(BaseSettings): SFTP_REMOTE_PATH: str = "/backups" SSH_KEY_PATH: str = "" + # Mattermost Notifications + MATTERMOST_WEBHOOK_URL: str = "" + MATTERMOST_NOTIFICATIONS_ENABLED: bool = False + # Deployment Configuration (used by Docker/Podman) POSTGRES_USER: str = "bmc_hub" POSTGRES_PASSWORD: str = "bmc_hub"