Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created March 20, 2020 10:23
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/b8f99807de96644687b97b6a017cf482 to your computer and use it in GitHub Desktop.
Save iaindooley/b8f99807de96644687b97b6a017cf482 to your computer and use it in GitHub Desktop.
Invite new user to all boards
function inviteNewUserToAllBoards()
{
new Trellinator().boards().each(function(board)
{
board.addMember(new Member({username: "new_username"}));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment