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/416d3487d41b86a531d788223099e24e to your computer and use it in GitHub Desktop.
Save iaindooley/416d3487d41b86a531d788223099e24e to your computer and use it in GitHub Desktop.
Set member on linked card
function setMemberOnLinkedCard(notification)
{
var linked = new Notification(notification).convertedChecklistItemToCard();
linked
.addMember(linked.source().members().first())
.setDue(linked.due());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment