Add OpenID Connect in authentication and userDB select (#820, #LEMONLDAP-183)

environments/ppa-mbqj77/deployments/1
Clément Oudot 10 years ago
parent 1a02f69e65
commit 399a8371b9
  1. 2
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
  2. 1
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Tree.pm
  3. 3
      lemonldap-ng-manager/site/static/js/filterFunctions.js
  4. 2
      lemonldap-ng-manager/site/static/struct.json

@ -1480,6 +1480,7 @@ sub attributes {
{ k => 'Multi', v => 'Multiple' },
{ k => 'Null', v => 'None' },
{ k => 'OpenID', v => 'OpenID' },
{ k => 'OpenIDConnect', v => 'OpenID Connect' },
{ k => 'Proxy', v => 'Proxy' },
{ k => 'Radius', v => 'Radius' },
{ k => 'Remote', v => 'Remote' },
@ -1506,6 +1507,7 @@ sub attributes {
{ k => 'Multi', v => 'Multiple' },
{ k => 'Null', v => 'None' },
{ k => 'OpenID', v => 'OpenID' },
{ k => 'OpenIDConnect', v => 'OpenID Connect' },
{ k => 'Proxy', v => 'Proxy' },
{ k => 'Remote', v => 'Remote' },
{ k => 'SAML', v => 'SAML v2' },

@ -288,6 +288,7 @@ sub tree {
},
{
title => 'oidcParams',
help => 'authopenidconnect.html',
nodes => [
'oidcAuthnLevel',
'oidcRPCallbackGetParam',

@ -26,6 +26,9 @@ var filterFunctions = {
if (tmp == 'ad') {
tmp = 'ldap';
}
if (tmp == 'openidconnect') {
tmp = 'oidc';
}
nToShow.push(tmp + 'Params');
});
/* 2.2 Display modules */

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save