Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created December 1, 2018 01:57
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/b43f141f21f1143d5b0395ed0c69066c to your computer and use it in GitHub Desktop.
Save iaindooley/b43f141f21f1143d5b0395ed0c69066c to your computer and use it in GitHub Desktop.
Copy list to new board
function copyListToBoard(notification)
{
var notif = new Notification(notification);
notif.addedLabel("Copy to board").card().archive().currentList().copy().move(Board.findOrCreate(notif.card().name()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment