Merge pull request #13 from saskenuba/master

Add missing `AlwaysIncludeUserClainInIdToken` to IdentityServerConfig
This commit is contained in:
Enes Sadık Özbek 2021-09-11 20:25:52 +03:00 committed by GitHub
commit 45c05ac83a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,8 @@ namespace SteamOpenIdConnectProvider
{
new Secret(secret.Sha256())
},
AlwaysSendClientClaims = true,
AlwaysIncludeUserClaimsInIdToken = true,
// where to redirect to after login
RedirectUris = redirectUri.Split(",").Select(x => x.Trim()).ToArray(),