Skip to content

Commit

Permalink
Merge pull request #5115 from PasinduYeshan/fix/role
Browse files Browse the repository at this point in the history
Fix delete roles by application name issue
  • Loading branch information
AnuradhaSK authored Oct 30, 2023
2 parents 08e5397 + 426a86f commit 34b4849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ private List<RoleDTO> getHybridRolesByApplication(String applicationId, String t
String name = resultSet.getString(2);
int tenantId = resultSet.getInt(3);
int audienceRefId = resultSet.getInt(4);
hybridRoles.add(new RoleDTO(id, name, audienceRefId, tenantId));
hybridRoles.add(new RoleDTO(name, id, audienceRefId, tenantId));
}
}
} catch (SQLException e) {
Expand Down

0 comments on commit 34b4849

Please sign in to comment.