Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created April 26, 2019 04:48
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/8dc3860894972714d0e1eaba7763a424 to your computer and use it in GitHub Desktop.
Save iaindooley/8dc3860894972714d0e1eaba7763a424 to your computer and use it in GitHub Desktop.
Copy new project board
function copyNewProjectBoard(notification)
{
var card = new Notification(notification).createdCard();
var project_board = new Trellinator().board("My Project Template").copy(card.name());
card.attachLink(project_board.link());
project_board.card("Board Card link").attachLink(card.link());
Trellinator.addBoardToGlobalCommandGroup(project_board,"Project Boards");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment