Skip to content

Instantly share code, notes, and snippets.

@BrunoBernardino
Created October 24, 2017 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrunoBernardino/60f6af585b37ecbcb708a1f86f8da37f to your computer and use it in GitHub Desktop.
Save BrunoBernardino/60f6af585b37ecbcb708a1f86f8da37f to your computer and use it in GitHub Desktop.
Webtask for getting input fields.
module.exports = function(context, cb) {
cb(null, [
{
"key":"authorId",
"label":"Author",
"type":"number",
"required": true,
"helpText": "This is some help, yo!"
}
]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment