Change default value for portalForceAuthnInterval (#820)

environments/ppa-mbqj77/deployments/1
Clément Oudot 10 years ago
parent 7fda0fdec1
commit 58a5f51d93
  1. 2
      lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm
  2. 2
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
  3. 2
      lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
  4. 2
      lemonldap-ng-manager/site/static/struct.json

@ -176,7 +176,7 @@ sub defaultValues {
'portalDisplayRegister' => 1,
'portalDisplayResetPassword' => 1,
'portalForceAuthn' => 0,
'portalForceAuthnInterval' => 0,
'portalForceAuthnInterval' => 5,
'portalOpenLinkInNewWindow' => 0,
'portalPingInterval' => 60000,
'portalRequireOldPassword' => 1,

@ -1491,7 +1491,7 @@ qr/^(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-zA-Z0-
'type' => 'bool'
},
'portalForceAuthnInterval' => {
'default' => 0,
'default' => 5,
'type' => 'int'
},
'portalOpenLinkInNewWindow' => {

@ -395,7 +395,7 @@ sub attributes {
},
portalForceAuthnInterval => {
type => 'int',
default => 0,
default => 5,
documentation =>
'Minimum number of seconds since last authentifcation to force reauthentication',
},

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