10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
|
import http from '@/api/http';
|
||
|
|
||
|
export default (uuid: string, root: string, name: string): Promise<void> => {
|
||
|
return new Promise((resolve, reject) => {
|
||
|
http.post(`/api/client/servers/${uuid}/files/create-folder`, { root, name })
|
||
|
.then(() => resolve())
|
||
|
.catch(reject);
|
||
|
});
|
||
|
};
|