Skip to content

Commit

Permalink
EPMRPP-88931 multi-word search fix for assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Jan 5, 2024
1 parent 02a7bdc commit 1437c13
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ public IssueDto postIssue(String projectId, Map<String, String> queryParams) {
}

public List<UserDto> searchUsers(String projectId, String term) {
String pathUrl = String.format(USERS_PATH, baseUrl, projectId, term);
String wrappedSearchCriteria = getWrappedCriteria(term);
String pathUrl = String.format(USERS_PATH, baseUrl, projectId, wrappedSearchCriteria);
List<Object> response = new ArrayList<>();
getLists(response, pathUrl, new HashMap<>(pageParams));
return objectMapper.convertValue(response, new TypeReference<>() {
Expand Down

0 comments on commit 1437c13

Please sign in to comment.