Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Jul 6, 2024
1 parent 159ee10 commit 9cf35d2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public ApiRequestHandlerResponse get(final LambdaLogger logger,

ListUsersInGroupResponse response = service.listUsersInGroup(groupName, token, limit);

List<Map<String, Object>> users = response.users().stream().map(new UsersResponseToMap()).toList();
List<Map<String, Object>> users =
response.users().stream().map(new UsersResponseToMap()).toList();

Map<String, Object> map = new HashMap<>();
map.put("users", users);
Expand Down

0 comments on commit 9cf35d2

Please sign in to comment.