Skip to content

Instantly share code, notes, and snippets.

@BrunoBernardino
Created October 24, 2017 15:10
Show Gist options
  • Save BrunoBernardino/6e7a216e97e6d0e62c5c364c6ec2d743 to your computer and use it in GitHub Desktop.
Save BrunoBernardino/6e7a216e97e6d0e62c5c364c6ec2d743 to your computer and use it in GitHub Desktop.
Webtask for output fields.
module.exports = function(context, cb) {
cb(null, [
{
"key":"name",
"label":"Better Name",
"type":"string"
},
{
"key":"authorId",
"label":"Author",
"type":"number"
}
]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment