mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
'use strict';
|
|
|
|
import requests from '../utils/requests';
|
|
|
|
let S3Fetcher = {
|
|
/**
|
|
* Fetch the registered applications of a user from the API.
|
|
*/
|
|
deleteFile(key, bucket) {
|
|
return requests.delete('delete_s3_file', {
|
|
key,
|
|
bucket
|
|
});
|
|
}
|
|
};
|
|
|
|
export default S3Fetcher;
|