Skip to content

Commit

Permalink
Fix Assigned users and groups in roles
Browse files Browse the repository at this point in the history
  • Loading branch information
Achintha Isuru committed Oct 28, 2023
1 parent 97d2d68 commit 18eb7a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/clever-actors-fetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/console": patch
---

Fix Assigned users and groups in roles
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export const RoleGroupsList: FunctionComponent<RoleGroupsPropsInterface> = (
"Operations": []
},
method: "PATCH",
path: "/Roles/" + role.id
path: "v2/Roles/" + role.id
};

removedGroupsOptions?.map((group: GroupsInterface) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const RoleUsersList: FunctionComponent<RoleUsersPropsInterface> = (
"Operations": []
},
method: "PATCH",
path: "/Roles/" + role.id
path: "v2/Roles/" + role.id
};

removedUsersOptions?.map((user: UserBasicInterface) => {
Expand Down

0 comments on commit 18eb7a5

Please sign in to comment.