Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created October 20, 2020 01:42
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/dd42ccef801e4b14daf13e14005e62c3 to your computer and use it in GitHub Desktop.
Save iaindooley/dd42ccef801e4b14daf13e14005e62c3 to your computer and use it in GitHub Desktop.
Trello report
new IterableCollection(
new Trellinator().board("iaindooley").list(/Coming up.*/i).cards().asArray().sort(function(a, b) {
return new Date(a.due()).getTime() - new Date(b.due()).getTime();
})
).each(function(card)
{
console.log(card.name()+" - "+card.link()+"\n");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment