Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 3, 2023
2 parents a3978f0 + 34e1781 commit 32b0852
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,18 @@ protected IModel<String> getSubTextModel() {
protected String getCssForWidthOfFeedbackPanel() {
return "col-11";
}

@Override
protected boolean isExitButtonVisible() {
return false;
}

@Override
protected boolean isBackButtonVisible() {
return true;
}

protected IModel<String> getExitLabel() {
return getPageBase().createStringResource("PageBase.button.back");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,18 @@ protected IModel<String> getSubTextModel() {
protected String getCssForWidthOfFeedbackPanel() {
return "col-11";
}

@Override
protected boolean isExitButtonVisible() {
return false;
}

@Override
protected boolean isBackButtonVisible() {
return true;
}

protected IModel<String> getExitLabel() {
return getPageBase().createStringResource("PageBase.button.back");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,8 @@ private List<StringLimitationResult> getLimitationsForActualPassword(ValuePolicy

protected void collectDeltas(Collection<ObjectDelta<? extends ObjectType>> deltas, ProtectedStringType currentPassword, ItemPath valuePath) {
List<PasswordAccountDto> selectedAccounts = Lists.newArrayList(provider.internalIterator(0, provider.size()));
selectedAccounts.removeIf(account -> !account.isSelected());

SchemaRegistry registry = getPrismContext().getSchemaRegistry();
selectedAccounts.forEach(account -> {
PrismObjectDefinition objDef = account.isMidpoint() ?
Expand Down

0 comments on commit 32b0852

Please sign in to comment.