misc_pterodactyl-panel/resources/scripts/api/admin/nests/updateNest.ts

13 lines
424 B
TypeScript
Raw Normal View History

import http from '@/api/http';
import { Nest, rawDataToNest } from '@/api/admin/nests/getNests';
export default (id: number, name: string, description?: string): Promise<Nest> => {
return new Promise((resolve, reject) => {
http.patch(`/api/application/nests/${id}`, {
name, description,
})
.then(({ data }) => resolve(rawDataToNest(data)))
.catch(reject);
});
};