Skip to content

Instantly share code, notes, and snippets.

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/6468a67e709aceb8b8776b76616461fa to your computer and use it in GitHub Desktop.
Save iaindooley/6468a67e709aceb8b8776b76616461fa to your computer and use it in GitHub Desktop.
Create Card in All Lists
function createCardInAllLists(notification)
{
var added = new Notification(notification).addedCard("Master");
added.board().lists().each(function(list)
{
if(list.id() != added.currentList().id())
added.copyToList(list);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment