Implement IUserSessionStore<BackOfficeIdentityUser> to fix timeout bug #11350 (#11351)

This commit is contained in:
Warren Buckley
2021-10-11 14:51:49 +01:00
committed by GitHub
parent d6b4fd567f
commit 243d0bba7b

View File

@@ -24,7 +24,7 @@ namespace Umbraco.Cms.Core.Security
/// <summary>
/// The user store for back office users
/// </summary>
public class BackOfficeUserStore : UmbracoUserStore<BackOfficeIdentityUser, IdentityRole<string>>
public class BackOfficeUserStore : UmbracoUserStore<BackOfficeIdentityUser, IdentityRole<string>>, IUserSessionStore<BackOfficeIdentityUser>
{
private readonly IScopeProvider _scopeProvider;
private readonly IUserService _userService;