12 lines
479 B
TypeScript
12 lines
479 B
TypeScript
import http from '@/api/http';
|
|
import { Node, rawDataToNode } from '@/api/admin/nodes/getNodes';
|
|
|
|
export default (name: string, description: string | null, include: string[] = []): Promise<Node> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.post('/api/application/nodes', {
|
|
name, description,
|
|
}, { params: { include: include.join(',') } })
|
|
.then(({ data }) => resolve(rawDataToNode(data)))
|
|
.catch(reject);
|
|
});
|
|
};
|