diff options
Diffstat (limited to 'code/api/src/Utilities/BasicAuthenticationHandler.cs')
| -rw-r--r-- | code/api/src/Utilities/BasicAuthenticationHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/api/src/Utilities/BasicAuthenticationHandler.cs b/code/api/src/Utilities/BasicAuthenticationHandler.cs index 6138193..b0a2d1a 100644 --- a/code/api/src/Utilities/BasicAuthenticationHandler.cs +++ b/code/api/src/Utilities/BasicAuthenticationHandler.cs @@ -7,7 +7,7 @@ namespace IOL.GreatOffice.Api.Utilities; public class BasicAuthenticationHandler : AuthenticationHandler<AuthenticationSchemeOptions> { - private readonly AppDbContext _context; + private readonly MainAppDatabase _context; private readonly AppConfiguration _configuration; private readonly ILogger<BasicAuthenticationHandler> _logger; @@ -16,7 +16,7 @@ public class BasicAuthenticationHandler : AuthenticationHandler<AuthenticationSc ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock, - AppDbContext context, + MainAppDatabase context, VaultService vaultService ) : base(options, logger, encoder, clock) { |
