Change default value for portalForceAuthnInterval (#820)

This commit is contained in:
Clément Oudot 2016-01-06 15:58:40 +00:00
parent 7fda0fdec1
commit 58a5f51d93
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -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' 'type' => 'bool'
}, },
'portalForceAuthnInterval' => { 'portalForceAuthnInterval' => {
'default' => 0, 'default' => 5,
'type' => 'int' 'type' => 'int'
}, },
'portalOpenLinkInNewWindow' => { 'portalOpenLinkInNewWindow' => {

View File

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

File diff suppressed because one or more lines are too long