admin(ui): add mising update requests
This commit is contained in:
parent
52ce5e9a57
commit
11b7197c49
3 changed files with 36 additions and 0 deletions
12
resources/scripts/api/admin/roles/updateRole.ts
Normal file
12
resources/scripts/api/admin/roles/updateRole.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import http from '@/api/http';
|
||||
import { Role, rawDataToRole } from '@/api/admin/roles/getRoles';
|
||||
|
||||
export default (id: number, name: string, description?: string): Promise<Role> => {
|
||||
return new Promise((resolve, reject) => {
|
||||
http.patch(`/api/application/roles/${id}`, {
|
||||
name, description,
|
||||
})
|
||||
.then(({ data }) => resolve(rawDataToRole(data)))
|
||||
.catch(reject);
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue