From 78b2082ab914773d3786072f173cacab0b80ae23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mechnich?= Date: Sun, 28 Apr 2024 18:17:21 +0200 Subject: [PATCH] fix: make `trusted_domains` and `overwrite.cli.url` sensitive config values MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörg Mechnich --- lib/private/SystemConfig.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index f63663fbfe3fd..99a1312bbee60 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -64,6 +64,8 @@ class SystemConfig { 'zammad.secret' => true, 'github.client_id' => true, 'github.client_secret' => true, + 'trusted_domains' => true, + 'overwrite.cli.url' => true, 'log.condition' => [ 'shared_secret' => true, ],