diff --git a/src/Tgstation.Server.Host/Authority/UserAuthority.cs b/src/Tgstation.Server.Host/Authority/UserAuthority.cs index d7b856a91a..7f97c2bbcf 100644 --- a/src/Tgstation.Server.Host/Authority/UserAuthority.cs +++ b/src/Tgstation.Server.Host/Authority/UserAuthority.cs @@ -242,6 +242,7 @@ namespace Tgstation.Server.Host.Authority : null, () => Queryable(false) .SelectMany(user => user.OAuthConnections!) + .OrderBy(connection => connection.Provider) .TagWith("Get User OAuthConnections")); /// @@ -252,6 +253,7 @@ namespace Tgstation.Server.Host.Authority : null, () => Queryable(false) .SelectMany(user => user.OidcConnections!) + .OrderBy(connection => connection.SchemeKey) .TagWith("Get User OIdcConnections")); ///