Skip to content

Commit

Permalink
request access: fix for relation configuration in gui profile compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Feb 20, 2024
1 parent 9b4b9f5 commit 25b9ca1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,10 @@ private void mergeAccessRequestConfiguration(CompiledGuiProfile composite, Acces
ar.setTargetSelection(accessRequest.getTargetSelection().clone());
}

if (accessRequest.getRelationSelection() != null) {
ar.setRelationSelection(accessRequest.getRelationSelection().clone());
}

if (accessRequest.getRoleCatalog() != null) {
ar.setRoleCatalog(accessRequest.getRoleCatalog().clone());
}
Expand Down

0 comments on commit 25b9ca1

Please sign in to comment.