From 243d0bba7bfe32f9d65d5d08411fd81ee1e9102f Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Mon, 11 Oct 2021 14:51:49 +0100 Subject: [PATCH] Implement IUserSessionStore to fix timeout bug #11350 (#11351) --- src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs b/src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs index e656e68193..67e69c0788 100644 --- a/src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs +++ b/src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs @@ -24,7 +24,7 @@ namespace Umbraco.Cms.Core.Security /// /// The user store for back office users /// - public class BackOfficeUserStore : UmbracoUserStore> + public class BackOfficeUserStore : UmbracoUserStore>, IUserSessionStore { private readonly IScopeProvider _scopeProvider; private readonly IUserService _userService;