Expose Doctrine settings in Netxcloud settings

Signed-off-by: Retidurc Silvernight <retidurc@silvernight.social>
This commit is contained in:
Retidurc Silvernight 2022-06-16 14:30:46 +02:00
parent 11ec90d8ae
commit 90f3379dfc
No known key found for this signature in database
GPG key ID: D246194951B7F0F8

View file

@ -233,6 +233,10 @@ class ConnectionFactory {
];
}
if ($this->config->getValue('persistent', false)) {
$connectionParams['persistent'] = true;
}
return $connectionParams;
}