admin(ui): add mising update requests

This commit is contained in:
Matthew Penner 2021-01-08 15:18:08 -07:00
parent 52ce5e9a57
commit 11b7197c49
3 changed files with 36 additions and 0 deletions

View 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);
});
};