Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created September 7, 2020 03:28
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/4301258b9bbea98dc43e12193bcd3db1 to your computer and use it in GitHub Desktop.
Save iaindooley/4301258b9bbea98dc43e12193bcd3db1 to your computer and use it in GitHub Desktop.
Create linked board from Card
var card_link = "CARDLINKHERE";//replace CARDLINKHERE with a link to the card for the new staff member
var team = "My Business Class Team";//replace with your real team name
var template = "On-Boarding Template Board";//replace with the real on-boarding template board name
//////////////////////////////////////////
var trellinator = new Trellinator();
var from_card = new Card({link: card_link});
from_card.attachLink(Board.findOrCreate(template).copy(from_card.name(),trellinator.team(team)).link());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment