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
1 changed files with 7 additions and 6 deletions

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)'),
'type' => 'checkbox',
'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 = [
@ -140,12 +146,7 @@ class Admin implements ISettings {
'type' => 'line',
'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 = [