Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created October 5, 2020 23:19
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 iaindooley/bb1cc257ede60372905458f777e2f8a9 to your computer and use it in GitHub Desktop.
Save iaindooley/bb1cc257ede60372905458f777e2f8a9 to your computer and use it in GitHub Desktop.
Report
new Trellinator().board("My Board Name").lists().each(function(list)
{
console.log("List "+list.name()+":\n\n");
list.cards().each(function(card)
{
console.log(" - "+card.name()+" ("+card.link()+"): "+card.customFieldValue("Card Size")+"\n");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment