From 9fb149c02a4b7a003f95918172f647621a5926e4 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 2 Jan 2026 02:06:05 +0100 Subject: [PATCH] Fix Mattermost config field names --- VERSION | 2 +- app/core/config.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 51559dc..f552f58 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.69 \ No newline at end of file +1.3.70 \ No newline at end of file diff --git a/app/core/config.py b/app/core/config.py index 0f67dac..d4d4662 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -117,7 +117,8 @@ class Settings(BaseSettings): # Mattermost Notifications MATTERMOST_WEBHOOK_URL: str = "" - MATTERMOST_NOTIFICATIONS_ENABLED: bool = False + MATTERMOST_ENABLED: bool = False + MATTERMOST_CHANNEL: str = "" # Deployment Configuration (used by Docker/Podman) POSTGRES_USER: str = "bmc_hub"