Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
populatePdfFromCustomFields
var moved = new Notification(notification).movedCard("Create PDF");
var fields = {};
moved.board().customFields().each(function(field)
{
fields[field.name()] = moved.customFieldValue(field.name());
});
createGoogleDocsPdfFromFieldValues(fields);//this would be a library function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment