config: Change Reauthenticate Time Default
Update the default Reauthenticate time to 3600 moving from 1 minute timeout to 1 hour to improve user experience Bug: T402037 Change-Id: Ic9a4585afcfe72f795868cbf7d5281a809e6a7c5 (cherry picked from commit fa04ae9ab260082b859876bee7b162b8c833c85b)
This commit is contained in:
parent
05631d4fe4
commit
97bd678013
3 changed files with 3 additions and 3 deletions
|
|
@ -4516,7 +4516,7 @@ config-schema:
|
|||
@since 1.36
|
||||
ReauthenticateTime:
|
||||
default:
|
||||
default: 300
|
||||
default: 3600
|
||||
type: object
|
||||
additionalProperties:
|
||||
type: integer
|
||||
|
|
|
|||
|
|
@ -7210,7 +7210,7 @@ class MainConfigSchema {
|
|||
* @since 1.27
|
||||
*/
|
||||
public const ReauthenticateTime = [
|
||||
'default' => [ 'default' => 300, ],
|
||||
'default' => [ 'default' => 3600, ],
|
||||
'type' => 'map',
|
||||
'additionalProperties' => [ 'type' => 'integer', ],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -968,7 +968,7 @@ return [
|
|||
],
|
||||
'RememberMe' => 'choose',
|
||||
'ReauthenticateTime' => [
|
||||
'default' => 300,
|
||||
'default' => 3600,
|
||||
],
|
||||
'AllowSecuritySensitiveOperationIfCannotReauthenticate' => [
|
||||
'default' => true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue