Skip to content

Commit 3f5d9df

Browse files
Merge branch 'v9/dev' into v9/contrib
2 parents 04f53b7 + 5fe30c7 commit 3f5d9df

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Umbraco.Infrastructure/Security/BackOfficeUserStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Umbraco.Cms.Core.Security
2424
/// <summary>
2525
/// The user store for back office users
2626
/// </summary>
27-
public class BackOfficeUserStore : UmbracoUserStore<BackOfficeIdentityUser, IdentityRole<string>>
27+
public class BackOfficeUserStore : UmbracoUserStore<BackOfficeIdentityUser, IdentityRole<string>>, IUserSessionStore<BackOfficeIdentityUser>
2828
{
2929
private readonly IScopeProvider _scopeProvider;
3030
private readonly IUserService _userService;

src/Umbraco.Web.BackOffice/Controllers/CurrentUserController.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using Microsoft.AspNetCore.Http;
88
using Microsoft.AspNetCore.Mvc;
99
using Microsoft.Extensions.DependencyInjection;
10+
using Microsoft.Extensions.Logging;
1011
using Microsoft.Extensions.Options;
1112
using Newtonsoft.Json;
1213
using Umbraco.Cms.Core;
@@ -93,6 +94,7 @@ public CurrentUserController(
9394
IUserService userService,
9495
IUmbracoMapper umbracoMapper,
9596
IBackOfficeUserManager backOfficeUserManager,
97+
ILoggerFactory loggerFactory,
9698
ILocalizedTextService localizedTextService,
9799
AppCaches appCaches,
98100
IShortStringHelper shortStringHelper,

0 commit comments

Comments
 (0)