UNPKG

@vph-garage/sails-interfuser

Version:

Automizing injection of your [custom Sails.JS] hook's MVC logics (models, controllers, helpers, services, config, policies, views, and assets) from the hook's directory [presuming default structure], or specified directories, into the end-product, Sails.J

16 lines (14 loc) 315 B
/** * Created by Emmanuel Mahuni. MIT 2018 */ module.exports = { /** * Can be overrided on AfterService.js file on your sails server * @param req * @param res */ afterServiceTest: function (req, res) { sails.log.silly('test method on AfterService'); return true; } };