From 1345cccd02fb3de563e629b8c1321ec736d50da9 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 21 Oct 2025 17:55:12 -0400 Subject: [PATCH] Fix being unable to see your own OIDC connections --- .../Security/AuthenticationContextFactory.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tgstation.Server.Host/Security/AuthenticationContextFactory.cs b/src/Tgstation.Server.Host/Security/AuthenticationContextFactory.cs index 540cf72c23..7e22505e43 100644 --- a/src/Tgstation.Server.Host/Security/AuthenticationContextFactory.cs +++ b/src/Tgstation.Server.Host/Security/AuthenticationContextFactory.cs @@ -175,6 +175,7 @@ namespace Tgstation.Server.Host.Security .Include(x => x.Group) .ThenInclude(x => x!.PermissionSet) .Include(x => x.OAuthConnections) + .Include(x => x.OidcConnections) .FirstOrDefaultAsync(cancellationToken); if (user == default) {