@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
35 lines (17 loc) • 313 B
JavaScript
/**
* @fileOverview
* @name act-policy-deny.js
* @author Emmanuel Mahuni <emahuni@gmail.com>
* @license MIT
*/
module.exports = {
friendlyName: 'Test action',
description: '',
inputs: {
},
exits: {
},
fn: async function (inputs, exits) {
return exits.success(true);
}
};