From 40ce65b6e0463eb66107170603bfb6bc069c5a45 Mon Sep 17 00:00:00 2001 From: James Manuel Date: Wed, 10 Jun 2026 13:05:40 +0200 Subject: [PATCH] feat: enable EuroOffice by default for new installs Flips isEuroofficeEnabled default to true and isCollaboraEnabled default to false in ConfigurationManager. Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: James Manuel --- php/src/Data/ConfigurationManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/src/Data/ConfigurationManager.php b/php/src/Data/ConfigurationManager.php index 6a6556ec..5a25ad45 100644 --- a/php/src/Data/ConfigurationManager.php +++ b/php/src/Data/ConfigurationManager.php @@ -100,13 +100,13 @@ class ConfigurationManager } public bool $isEuroofficeEnabled { - get => $this->get('isEuroofficeEnabled', false); + get => $this->get('isEuroofficeEnabled', true); set { $this->set('isEuroofficeEnabled', $value); } } public bool $isCollaboraEnabled { // Type-cast because old configs could have 1/0 for this key. - get => (bool) $this->get('isCollaboraEnabled', true); + get => (bool) $this->get('isCollaboraEnabled', false); set { $this->set('isCollaboraEnabled', $value); } }