diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 01:48:20 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 01:48:20 +0200 |
| commit | 0296adc3ace0e36b92a56ec3a01a933b9bbd2e99 (patch) | |
| tree | a66276faa5e14124f3d29070fe5befbb80d82ead /app/api/index.js | |
| parent | f82d95c5f5b589bec0fc503c86f9e644b07b4ddd (diff) | |
write a buncha crud code
Diffstat (limited to 'app/api/index.js')
| -rw-r--r-- | app/api/index.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/api/index.js b/app/api/index.js deleted file mode 100644 index 9ee943f..0000000 --- a/app/api/index.js +++ /dev/null @@ -1,20 +0,0 @@ -import FormData from 'form-data' -import fetch from 'node-fetch' - -import { crud, postBody } from './crud' - -export const folder = crud('folder') - -folder.upload = (folder_id, files) => { - var data = new FormData() - for (var i = 0; i < files.length; i++) { - data.append('file', files[i]) - } - return fetch('/api/folders/' + folder_id, postBody(data)) - .then(req => req.json()) - .catch(error) -} - -export const file = crud('file') -export const task = crud('task') -export const job = crud('job') |
