Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created August 24, 2020 23:47
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/30e209d57c5bca2ebef0acff7f985280 to your computer and use it in GitHub Desktop.
Save iaindooley/30e209d57c5bca2ebef0acff7f985280 to your computer and use it in GitHub Desktop.
Unarchive every card
TrelloApi
.searchCardsInBoards(new Trellinator().board("My Board"),"is:archived")
.each(function(card)
{
card.unArchive();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment