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

13 lines
386 B
TypeScript
Raw Normal View History

2021-01-01 00:27:16 +00:00
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);
});
};