From f3f4537c584472908e7a583e0d339b604cf164d1 Mon Sep 17 00:00:00 2001 From: Scott Brady Date: Thu, 30 Apr 2020 15:50:19 +0100 Subject: [PATCH] Removed test settings --- src/Umbraco.Web/Security/AppBuilderExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Security/AppBuilderExtensions.cs b/src/Umbraco.Web/Security/AppBuilderExtensions.cs index 6865bd696b..3f129f941d 100644 --- a/src/Umbraco.Web/Security/AppBuilderExtensions.cs +++ b/src/Umbraco.Web/Security/AppBuilderExtensions.cs @@ -154,7 +154,7 @@ namespace Umbraco.Web.Security // change a password or add an external login to your account. OnValidateIdentity = UmbracoSecurityStampValidator .OnValidateIdentity( - TimeSpan.FromMinutes(3), + TimeSpan.FromMinutes(30), (signInManager, manager, user) => signInManager.CreateUserIdentityAsync(user), identity => identity.GetUserId()),