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

This commit is contained in:
Maxime Besson 2020-12-30 16:48:11 +01:00
parent 65939365a8
commit 1e1ab08d4c
3 changed files with 14 additions and 9 deletions

View File

@ -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'

View File

@ -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