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

13 lines (10 loc) 258 B
/** * allowApp * * @module :: Policy * @description :: test policy allowing by simply allowing the action * @help :: http://sailsjs.org/#!/documentation/concepts/Policies */ module.exports = function(req, res, next) { return next(); };