2022-12-16 02:06:14 +00:00
|
|
|
import http from '@/api/http';
|
|
|
|
import { Nest, rawDataToNest } from '@/api/admin/nests/getNests';
|
|
|
|
|
|
|
|
export default (name: string, description: string | null, include: string[] = []): Promise<Nest> => {
|
|
|
|
return new Promise((resolve, reject) => {
|
2023-01-12 19:31:47 +00:00
|
|
|
http.post(
|
|
|
|
'/api/application/nests',
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
},
|
|
|
|
{ params: { include: include.join(',') } },
|
|
|
|
)
|
2022-12-16 02:06:14 +00:00
|
|
|
.then(({ data }) => resolve(rawDataToNest(data)))
|
|
|
|
.catch(reject);
|
|
|
|
});
|
|
|
|
};
|