fix(ui): removed trailing slash for add role endpoint

This commit is contained in:
Shekar Siri 2024-11-07 13:08:36 +01:00
parent 404b2e75a2
commit 92c4c5a1e3

View file

@ -66,7 +66,7 @@ export default class UserService {
}
createRole(role: any) {
return this.client.post('/client/roles/', role).then((r) => r.json());
return this.client.post('/client/roles', role).then((r) => r.json());
}
modifyRole(role: any) {