Add basic file deletion logic

This commit is contained in:
Dane Everitt 2019-03-09 12:04:29 -08:00
parent ea9cdea08d
commit 6b4bf3eaa7
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 64 additions and 2 deletions

View file

@ -0,0 +1,14 @@
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);
})
}