Fix after merge.

This commit is contained in:
Bjarke Berg
2022-01-23 15:26:17 +01:00
parent ae6920a4a2
commit 775bdff03b
6 changed files with 14 additions and 43 deletions

View File

@@ -62,29 +62,6 @@ namespace Umbraco.Cms.Core.Security
_externalLoginService = externalLoginService;
}
[Obsolete("Use ctor injecting IExternalLoginWithKeyService ")]
public BackOfficeUserStore(
IScopeProvider scopeProvider,
IUserService userService,
IEntityService entityService,
IExternalLoginService externalLoginService,
IOptions<GlobalSettings> globalSettings,
IUmbracoMapper mapper,
BackOfficeErrorDescriber describer,
AppCaches appCaches)
: this(
scopeProvider,
userService,
entityService,
StaticServiceProvider.Instance.GetRequiredService<IExternalLoginWithKeyService>(),
globalSettings,
mapper,
describer,
appCaches)
{
}
/// <inheritdoc />
public override Task<IdentityResult> CreateAsync(BackOfficeIdentityUser user, CancellationToken cancellationToken = default)
{