Skip to content

Commit

Permalink
SHIBUI-1788
Browse files Browse the repository at this point in the history
Bug fix that allows the CEAD to be added to metadata source via the
RelyingPartyOverride interface
  • Loading branch information
chasegawa committed Jun 15, 2021
1 parent ebbbe1a commit efcf415
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ public class CustomEntityAttributeDefinition implements IRelyingPartyOverridePro
@Column(name = "persist_value", nullable = true)
String persistValue;

@Override
public String getAttributeName() {
// This is a bit of a hack because we don't have attribute name in the UI yet...
return attributeName == null ? name : attributeName;
}

@Override
public Set<String> getDefaultValues() {
return customAttrListDefinitions;
Expand Down

0 comments on commit efcf415

Please sign in to comment.