move 'allow multiple user back-end' settings to general

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Björn Schiessle 2018-12-03 11:54:42 +01:00
parent 4a85637f3e
commit ef68972aa2
No known key found for this signature in database
GPG key ID: 2378A753E2BF04F6

View file

@ -97,6 +97,12 @@ class Admin implements ISettings {
'text' => $this->l10n->t('Only allow authentication if an account exists on some other backend. (e.g. LDAP)'), 'text' => $this->l10n->t('Only allow authentication if an account exists on some other backend. (e.g. LDAP)'),
'type' => 'checkbox', 'type' => 'checkbox',
'global' => true, 'global' => true,
],
'allow_multiple_user_back_ends' => [
'text' => $this->l10n->t('Allow the use of multiple user back-ends (e.g. LDAP)'),
'type' => 'checkbox',
'hideForEnv' => false,
'global' => true,
] ]
]; ];
$attributeMappingSettings = [ $attributeMappingSettings = [
@ -140,12 +146,7 @@ class Admin implements ISettings {
'type' => 'line', 'type' => 'line',
'required' => false, 'required' => false,
]; ];
$generalSettings['allow_multiple_user_back_ends'] = [
'text' => $this->l10n->t('Allow the use of multiple user back-ends (e.g. LDAP)'),
'type' => 'checkbox',
'hideForEnv' => true,
'global' => true,
];
} }
$params = [ $params = [