Revert "fix: address review comments on installer state PR"

This reverts commit a659038ad2.
This commit is contained in:
Jake Barnby
2026-03-25 01:08:14 +13:00
parent a659038ad2
commit 4de9ec7fba
+1 -1
View File
@@ -13,7 +13,7 @@ $organization = $this->getParam('organization', '');
$image = $this->getParam('image', '');
$enableAssistant = $this->getParam('enableAssistant', false);
$dbService = $this->getParam('database', 'mongodb');
$allowedDbServices = ['mariadb', 'mongodb', 'postgresql'];
$allowedDbServices = ['mariadb', 'mongodb'];
if (!\in_array($dbService, $allowedDbServices, true)) {
$dbService = 'mongodb';
}