Skip to content

Commit

Permalink
Bugifx for duplicate entityID
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Jul 3, 2024
1 parent 518466d commit c1d8052
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ public List<Map> uniqueEntityId(String type, String entityId) {
results = metaDataRepository.findByEntityId(entityType.getType(), entityId);
String otherType = entityType.equals(EntityType.RP) ? EntityType.SP.getType() : EntityType.RP.getType();
results.addAll(metaDataRepository.findByEntityId(otherType, entityId));
results.addAll(metaDataRepository.findByEntityId(EntityType.SRAM.getType(), entityId));
if (!entityType.equals(EntityType.SRAM)) {
results.addAll(metaDataRepository.findByEntityId(EntityType.SRAM.getType(), entityId));
}
if (entityType.equals(EntityType.RP)) {
results.addAll(metaDataRepository.findByEntityId(EntityType.RS.getType(), entityId));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,15 @@
"type": "boolean",
"info": "Set to activate the user policy engine (PDP)."
},
"coin:privacy:privacy_policy": {
"type": "boolean",
"info": "Does the SP publish an applicable privacy policy on a web page?"
},
"coin:privacy:privacy_policy_url": {
"type": "string",
"format": "url",
"info": "The URL to the applicable privacy policy. "
},
"coin:signature_method": {
"type": "string",
"format": "url",
Expand Down

0 comments on commit c1d8052

Please sign in to comment.