Skip to content

Commit

Permalink
fix of filter for default assignee of manual connector (MID-7311)
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Nov 9, 2021
1 parent aa2f153 commit 7d4a907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private PrismObject<CaseType> addCase(String operation, String description, Stri
}
if (operators.isEmpty() && configuration.getDefaultAssignee() != null) {
ObjectQuery query = getPrismContext().queryFor(UserType.class)
.item(UserType.F_NAME).eq(configuration.getDefaultAssignee()).matchingOrig()
.item(UserType.F_NAME).eqPoly(configuration.getDefaultAssignee()).matchingOrig()
.build();
List<PrismObject<UserType>> defaultAssignees = repositoryService
.searchObjects(UserType.class, query, null, result);
Expand Down

0 comments on commit 7d4a907

Please sign in to comment.