Refactored from ISystemClock to TimeProvider (#14963)

* Removed obsolete ISystemClock. The SecurityStampValidator provides the TimeProvider.

* Removed obsolete ISystemClock.

* Refactored obsolete ISystemClock with TimeProvider
This commit is contained in:
Andreas Zerbst
2023-10-12 13:58:51 +02:00
committed by GitHub
parent 6fb2550690
commit ace8d80183
5 changed files with 20 additions and 21 deletions

View File

@@ -27,11 +27,10 @@ public class TestAuthHandler : AuthenticationHandler<AuthenticationSchemeOptions
IOptionsMonitor<AuthenticationSchemeOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock,
IBackOfficeSignInManager backOfficeSignInManager,
IUserService userService,
IUmbracoMapper umbracoMapper)
: base(options, logger, encoder, clock)
: base(options, logger, encoder)
{
_backOfficeSignInManager = backOfficeSignInManager;