Skip to content

Instantly share code, notes, and snippets.

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/fce5c281358650911ddfd4f6afd25dfd to your computer and use it in GitHub Desktop.
Save iaindooley/fce5c281358650911ddfd4f6afd25dfd to your computer and use it in GitHub Desktop.
copyCardToAllLists
var created = new Notification(notification).createdCard(/Origin List.*/i);
created.board().lists().each(function(list)
{
if(list.id() != created.currentList().id())
{
created.copyToList(list,"top");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment