UNPKG

276 BJavaScriptView Raw
1const UploadAction = require ('./upload-action');
2
3/**
4 * @class TextOnlyUploadAction
5 *
6 * Action for uploading text only.
7 */
8module.exports = UploadAction.extend ({
9 init () {
10 this._super.call (this, ...arguments);
11 this._middleware = this._upload.none ();
12 }
13});