Skip to content

Commit

Permalink
ISPN-14695 Rest api change for detailed roles
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti committed Nov 7, 2023
1 parent 2b9ddf9 commit 6edacf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/securityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export class SecurityService {
*
*/
public async getSecurityRoles(): Promise<Either<ActionResponse, Role[]>> {
return this.fetchCaller.get(this.endpoint + '/roles-detail', (data) =>
return this.fetchCaller.get(this.endpoint + '/roles?action=detailed', (data) =>
Object.keys(data).map(
(roleName) =>
<Role>{
Expand Down

0 comments on commit 6edacf0

Please sign in to comment.