misc_pterodactyl-panel/resources/assets/scripts/api/server/files/deleteElement.ts

15 lines
561 B
TypeScript
Raw Normal View History

2019-03-09 20:04:29 +00:00
import {withCredentials} from "@/api/http";
import {ServerApplicationCredentials} from "@/store/types";
/**
* Deletes files and/or folders from the server. You should pass through an array of
* file or folder paths to be deleted.
*/
export function deleteElement(server: string, credentials: ServerApplicationCredentials, items: Array<string>): Promise<any> {
return new Promise((resolve, reject) => {
withCredentials(server, credentials).post('/v1/server/file/delete', { items })
.then(resolve)
.catch(reject);
})
}