Skip to content

Instantly share code, notes, and snippets.

View kandelakig's full-sized avatar

Giorgi Kandelaki kandelakig

  • UFC JSC
  • Tbilisi, Georgia
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
}
};