Skip to content

Commit

Permalink
fix(auth): add default configuration values for JWKS claim settings
Browse files Browse the repository at this point in the history
  • Loading branch information
cmark committed Dec 12, 2022
1 parent 18ed562 commit 76f5234
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public class JwksIdentityProviderConfig implements IdentityProviderConfig {
@NotEmpty
private String jwksUrl;

private String emailClaimProperty;
private String permissionsClaimProperty;
private String emailClaimProperty = "sub";
private String permissionsClaimProperty = "permissions";

public String getIssuer() {
return issuer;
Expand Down

0 comments on commit 76f5234

Please sign in to comment.