diff --git a/lib/Settings/Admin.php b/lib/Settings/Admin.php index 47937c9..6502207 100644 --- a/lib/Settings/Admin.php +++ b/lib/Settings/Admin.php @@ -186,10 +186,17 @@ class Admin implements ISettings { $type = $this->config->getAppValue('user_saml', 'type'); if ($type === 'saml') { + $generalSettings['require_provisioned_account'] = [ + 'text' => $this->l10n->t('Only allow authentication if an account exists on some other backend (e.g. LDAP).', [$this->defaults->getName()]), + 'type' => 'checkbox', + 'global' => true, + 'value' => $this->config->getAppValue('user_saml', 'general-require_provisioned_account', 0) + ]; $generalSettings['use_saml_auth_for_desktop'] = [ 'text' => $this->l10n->t('Use SAML auth for the %s desktop clients (requires user re-authentication)', [$this->defaults->getName()]), 'type' => 'checkbox', 'global' => true, + 'value' => $this->config->getAppValue('user_saml', 'general-use_saml_auth_for_desktop', 0) ]; $generalSettings['idp0_display_name'] = [ 'text' => $this->l10n->t('Optional display name of the identity provider (default: "SSO & SAML log in")'), @@ -201,6 +208,7 @@ class Admin implements ISettings { 'type' => 'checkbox', 'hideForEnv' => true, 'global' => true, + 'value' => $this->config->getAppValue('user_saml', 'general-allow_multiple_user_back_ends') ]; } diff --git a/templates/admin.php b/templates/admin.php index 73a9ef5..9fcae32 100644 --- a/templates/admin.php +++ b/templates/admin.php @@ -55,12 +55,12 @@ style('user_saml', 'admin'); $attribute): ?>

- +

- class="required" placeholder=""/> + class="required" placeholder=""/>