feat: enable EuroOffice by default for new installs (#8289)

This commit is contained in:
Simon L.
2026-06-10 13:57:07 +02:00
committed by GitHub
+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); }
} }