mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 14:23:44 +02:00
admin(ui): add mising update requests
This commit is contained in:
12
resources/scripts/api/admin/locations/updateLocation.ts
Normal file
12
resources/scripts/api/admin/locations/updateLocation.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import http from '@/api/http';
|
||||
import { Location, rawDataToLocation } from '@/api/admin/locations/getLocations';
|
||||
|
||||
export default (id: number, short: string, long?: string): Promise<Location> => {
|
||||
return new Promise((resolve, reject) => {
|
||||
http.patch(`/api/application/locations/${id}`, {
|
||||
short, long,
|
||||
})
|
||||
.then(({ data }) => resolve(rawDataToLocation(data)))
|
||||
.catch(reject);
|
||||
});
|
||||
};
|
||||
12
resources/scripts/api/admin/mounts/updateMount.ts
Normal file
12
resources/scripts/api/admin/mounts/updateMount.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import http from '@/api/http';
|
||||
import { Mount, rawDataToMount } from '@/api/admin/mounts/getMounts';
|
||||
|
||||
export default (id: number, name: string, description: string, source: string, target: string, readOnly: boolean, userMountable: boolean): Promise<Mount> => {
|
||||
return new Promise((resolve, reject) => {
|
||||
http.patch(`/api/application/mounts/${id}`, {
|
||||
name, description, source, target, read_only: readOnly, user_mountable: userMountable,
|
||||
})
|
||||
.then(({ data }) => resolve(rawDataToMount(data)))
|
||||
.catch(reject);
|
||||
});
|
||||
};
|
||||
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);
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user