misc_pterodactyl-panel/resources/scripts/api/admin/nests/createNest.ts
2020-12-31 17:27:16 -07:00

12 lines
386 B
TypeScript

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