UNPKG

sails-util-mvcsloader

Version:

Load models, controllers, services, policies and config from specified directories and inject them into the main Sails app.

18 lines (15 loc) 450 B
/** * Created by jaumard on 12/05/2015. */ var _ = require('lodash'); module.exports = { _bindToSails: function (sails, modules, cb) { _.each(modules, function (module) { // Add a reference to the Sails app that loaded the module module.sails = sails; // Bind all methods to the module context _.bindAll(module); }); return cb(null, modules); } };