Skip to content

Instantly share code, notes, and snippets.

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/a01d336c46dfb32606d576cfeb3f515a to your computer and use it in GitHub Desktop.
Save iaindooley/a01d336c46dfb32606d576cfeb3f515a to your computer and use it in GitHub Desktop.
allCardsAndChecklistItems
new Trellinator().board("My Board").list("My List").cards().each(function(card)
{
console.log(card.name()+" ("+card.link()+"):")
card.checklists().each(function(cl)
{
console.log(" "+cl.name()+":");
cl.items().each(function(item)
{
console.log(" - "+item.name());
});
});
console.log("\n\n");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment