Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created March 27, 2019 22:59
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/12d7d3a145ad08400135da85ea002c93 to your computer and use it in GitHub Desktop.
Save iaindooley/12d7d3a145ad08400135da85ea002c93 to your computer and use it in GitHub Desktop.
Bulk update
function bulkUpdate()
{
new Trellinator().boards().each(function(board)
{
board.cards().each(function(card)
{
card.setName(card.name().replace("ohai","there"));
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment