diff options
author | doubleO8 <wb008@hdm-stuttgart.de> | 2025-03-02 10:18:33 +0100 |
---|---|---|
committer | doubleO8 <wb008@hdm-stuttgart.de> | 2025-03-08 11:28:06 +0100 |
commit | da51459022d21a569ab8271c5456f69c9316cdad (patch) | |
tree | 74f10a36215effb48835830f31b0c51cf9591256 | |
parent | 8e06e757171fb8cb6dde657b3ff865f6c23f10fb (diff) | |
download | nextcloud-server-da51459022d21a569ab8271c5456f69c9316cdad.tar.gz nextcloud-server-da51459022d21a569ab8271c5456f69c9316cdad.zip |
fix(theming) include 'background_color' in list of supported keys
Signed-off-by: doubleO8 <wb008@hdm-stuttgart.de>
-rw-r--r-- | apps/theming/lib/Command/UpdateConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Command/UpdateConfig.php b/apps/theming/lib/Command/UpdateConfig.php index 89e47688372..9fec1c4970a 100644 --- a/apps/theming/lib/Command/UpdateConfig.php +++ b/apps/theming/lib/Command/UpdateConfig.php @@ -16,7 +16,7 @@ use Symfony\Component\Console\Output\OutputInterface; class UpdateConfig extends Command { public const SUPPORTED_KEYS = [ - 'name', 'url', 'imprintUrl', 'privacyUrl', 'slogan', 'color', 'primary_color', 'disable-user-theming' + 'name', 'url', 'imprintUrl', 'privacyUrl', 'slogan', 'color', 'primary_color', 'background_color', 'disable-user-theming' ]; public function __construct( |