Enable file uploader component

This commit is contained in:
garrettmills
2020-02-09 04:37:21 -06:00
parent 8714ab79f1
commit f629e6f3bd
7 changed files with 224 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
const Middleware = require('flitter-upload/middleware/UploadFile')
/*
* Middleware to upload the files included in the request
* to the default file store backend. Stores instances of
* the "upload::File" model in "request.uploads".
*/
class UploadFile extends Middleware {
}
module.exports = exports = UploadFile