Skip to content

Commit

Permalink
SHIBUI-2380
Browse files Browse the repository at this point in the history
changing default for existing relying overrides to be either oidc or saml
  • Loading branch information
chasegawa committed Oct 7, 2022
1 parent 46b686b commit 0145004
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class RelyingPartyOverrideProperty implements IRelyingPartyOverrideProper
private String name;
private String persistType;
private String persistValue;
private String protocol = "saml";
private String protocol = "saml, oidc";

@Override
public Boolean getFromConfigFile() {
Expand All @@ -46,7 +46,7 @@ public CustomAttributeType getAttributeType() {
}

public String getProtocol() {
return protocol == null ? "saml" : protocol;
return protocol == null ? "saml, oidc" : protocol;
}

public String getTypeForUI() {
Expand Down

0 comments on commit 0145004

Please sign in to comment.