@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
31 lines (16 loc) • 310 B
JavaScript
/**
* Created by Emmanuel Mahuni. MIT 2018
*/
module.exports = {
friendlyName: 'App helper test',
description: '',
inputs: {
},
exits: {
},
fn: async function (inputs, exits) {
sails.log.verbose('appHelperTest works!');
// All done.
return exits.success(true);
}
};