fix(ui): removed trailing slash for add role endpoint
This commit is contained in:
parent
404b2e75a2
commit
92c4c5a1e3
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue