UNPKG

@onehilltech/blueprint

Version:

lightweight, simple, elegant framework for building mean applications

14 lines (12 loc) 276 B
const UploadAction = require ('./upload-action'); /** * @class TextOnlyUploadAction * * Action for uploading text only. */ module.exports = UploadAction.extend ({ init () { this._super.call (this, ...arguments); this._middleware = this._upload.none (); } });