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 <noreply@anthropic.com>
Signed-off-by: James Manuel <moodyjmz@users.noreply.github.com>
This commit is contained in:
James Manuel
2026-06-10 13:05:40 +02:00
parent 9b981918b0
commit 40ce65b6e0
+2 -2
View File
@@ -100,13 +100,13 @@ class ConfigurationManager
} }
public bool $isEuroofficeEnabled { public bool $isEuroofficeEnabled {
get => $this->get('isEuroofficeEnabled', false); get => $this->get('isEuroofficeEnabled', true);
set { $this->set('isEuroofficeEnabled', $value); } set { $this->set('isEuroofficeEnabled', $value); }
} }
public bool $isCollaboraEnabled { public bool $isCollaboraEnabled {
// Type-cast because old configs could have 1/0 for this key. // 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); } set { $this->set('isCollaboraEnabled', $value); }
} }