Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created March 25, 2020 23:41
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/87a2eb13ade8f10c52e5fbf53b4c23ea to your computer and use it in GitHub Desktop.
Save iaindooley/87a2eb13ade8f10c52e5fbf53b4c23ea to your computer and use it in GitHub Desktop.
Bulk add observers
function bulkAddObservers(list)
{
for(var i = 0;i < list.length;i++)
{
new Trellinator().board("My Board").inviteMemberByEmail(list[i],"observer");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment