Skip to content

Instantly share code, notes, and snippets.

View funteractive's full-sized avatar

Keisuke Imura funteractive

View GitHub Profile
@tkh44
tkh44 / FileController.js
Last active March 10, 2020 09:04
Simple file upload for sails.js
module.exports = {
get: function (req, res) {
res.sendfile(req.path.substr(1));
},
_config: {
rest: false,
shortcuts: false
}
};