module.exports = { inputs: { id: { type: 'json', custom: (value) => _.isString(value) || _.isArray(value), required: true, }, }, async fn(inputs, exits) { const cardLabels = await sails.helpers.getCardLabels({ cardId: inputs.id, }); return exits.success(cardLabels); }, };