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

15 lines (11 loc) 506 B
/** * Created by Emmanuel Mahuni. MIT 2018 */ module.exports.routes = { '/runtime/ctrltest': 'RuntimeController.runtimeCtrlTest', '/runtime/actiontest': 'runtimeaction/test-action', '/runtimeaction/act-policy-allow': 'runtimeaction/act-policy-allow', '/runtimeaction/act-policy-deny': 'runtimeaction/act-policy-deny', '/runtime/runtimectrlpolicyallow': 'RuntimeController.runtimeCtrlPolicyAllow', '/runtime/runtimectrlpolicydeny': 'RuntimeController.runtimeCtrlPolicyDeny', };