Skip to content

Commit

Permalink
EPMRPP-89420 implement organizations sort and filter
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Feb 27, 2024
1 parent df47935 commit 47c516c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public static class AssignedProject {
public static class AssignedOrganization {

private Long organizationId;
private String organizationSlug;
private String organizationRole;
private String organizationName;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ private UserConverter() {
UserResource.AssignedOrganization assignedOrganization = new UserResource.AssignedOrganization();
assignedOrganization.setOrganizationId(orgUser.getOrganization().getId());
assignedOrganization.setOrganizationName(orgUser.getOrganization().getName());
assignedOrganization.setOrganizationSlug(orgUser.getOrganization().getSlug());
assignedOrganization.setOrganizationRole(orgUser.getOrganizationRole().name());
return assignedOrganization;
}));
Expand Down

0 comments on commit 47c516c

Please sign in to comment.