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,
'portalDisplayResetPassword' => 1,
'portalForceAuthn' => 0,
'portalForceAuthnInterval' => 0,
'portalForceAuthnInterval' => 5,
'portalOpenLinkInNewWindow' => 0,
'portalPingInterval' => 60000,
'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'
},
'portalForceAuthnInterval' => {
'default' => 0,
'default' => 5,
'type' => 'int'
},
'portalOpenLinkInNewWindow' => {

View File

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