Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created February 4, 2019 22:22
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/ae586af377bbe16a1ccc90b8008f14b9 to your computer and use it in GitHub Desktop.
Save iaindooley/ae586af377bbe16a1ccc90b8008f14b9 to your computer and use it in GitHub Desktop.
Add default members
function addDefaultMembers(notification)
{
var card = new Notification(notification).addedCard();
card.board().list("Default Members").cards().each(function(loop)
{
card.addMember(new Member({username: loop.name()}));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment