Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created August 27, 2020 22:04
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/7fcd01ce72518496a4aa3fa1ad64ffce to your computer and use it in GitHub Desktop.
Save iaindooley/7fcd01ce72518496a4aa3fa1ad64ffce to your computer and use it in GitHub Desktop.
Delete all archived cards
TrelloApi.searchCardsInBoards(new Trellinator().board("My Board"),"is:archived").each(function(card)
{
card.del();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment