17 lines
569 B
TypeScript
17 lines
569 B
TypeScript
import http from '@/api/http';
|
|
import { Nest, rawDataToNest } from '@/api/admin/nests/getNests';
|
|
|
|
export default (id: number, name: string, description: string | null, include: string[] = []): Promise<Nest> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.patch(
|
|
`/api/application/nests/${id}`,
|
|
{
|
|
name,
|
|
description,
|
|
},
|
|
{ params: { include: include.join(',') } },
|
|
)
|
|
.then(({ data }) => resolve(rawDataToNest(data)))
|
|
.catch(reject);
|
|
});
|
|
};
|