Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created January 20, 2021 03:13
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/365dd55f94fdb1e3e3f121ef6ba35ac8 to your computer and use it in GitHub Desktop.
Save iaindooley/365dd55f94fdb1e3e3f121ef6ba35ac8 to your computer and use it in GitHub Desktop.
Search cards in teams with BenkoBot
var mysearch = "edited:month";
var teamname = "My Business Class Team";
TrelloApi
.searchCardsInTeams(new Trellinator().team(teamname),mysearch)
.each(function(card)
{
console.log(card.name()+": "+card.link());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment