From 361b5a5ceeb67dad4e9ebefaac9fa665af1e8d91 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Sun, 9 Feb 2025 01:23:40 -0600 Subject: [PATCH] Fix user auth --- LANCommander.Server.Services/UserService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LANCommander.Server.Services/UserService.cs b/LANCommander.Server.Services/UserService.cs index 3d9cbcd0..e7bd19a2 100644 --- a/LANCommander.Server.Services/UserService.cs +++ b/LANCommander.Server.Services/UserService.cs @@ -31,6 +31,7 @@ namespace LANCommander.Server.Services IdentityContext = identityContextFactory.Create(); CollectionService = collectionService; Mapper = mapper; + Cache = cache; } public async Task GetAsync(string userName)