Let's suppose I have an action2 set in Sails.js like this:
inputs: {
formField: {
description: 'Form field.',
required: true,
type: 'string'
}
},
fn: async function ({formField}) {
return {};
}
How can I rename the formField input to form-field?