Add Password::Combination to manager (#714,#716)

v2.11
Maxime Besson 4 years ago
parent 65939365a8
commit 1e1ab08d4c
  1. 4
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
  2. 17
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
  3. 2
      lemonldap-ng-manager/site/htdocs/static/struct.json

@ -2563,6 +2563,10 @@ m[^(?:ldapi://[^/]*/?|\w[\w\-\.]*(?::\d{1,5})?|ldap(?:s|\+tls)?://\w[\w\-\.]*(?:
'k' => 'Null',
'v' => 'None'
},
{
'k' => 'Combination',
'v' => 'combineMods'
},
{
'k' => 'Custom',
'v' => 'customModule'

@ -3100,14 +3100,15 @@ sub attributes {
passwordDB => {
type => 'select',
select => [
{ k => 'AD', v => 'Active Directory' },
{ k => 'Choice', v => 'authChoice' },
{ k => 'DBI', v => 'Database (DBI)' },
{ k => 'Demo', v => 'Demonstration' },
{ k => 'LDAP', v => 'LDAP' },
{ k => 'REST', v => 'REST' },
{ k => 'Null', v => 'None' },
{ k => 'Custom', v => 'customModule' },
{ k => 'AD', v => 'Active Directory' },
{ k => 'Choice', v => 'authChoice' },
{ k => 'DBI', v => 'Database (DBI)' },
{ k => 'Demo', v => 'Demonstration' },
{ k => 'LDAP', v => 'LDAP' },
{ k => 'REST', v => 'REST' },
{ k => 'Null', v => 'None' },
{ k => 'Combination', v => 'combineMods' },
{ k => 'Custom', v => 'customModule' },
],
default => 'Demo',
documentation => 'Password module',

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