Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created February 18, 2021 05:13
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/2f9444f3042302d823f994bd71e286c5 to your computer and use it in GitHub Desktop.
Save iaindooley/2f9444f3042302d823f994bd71e286c5 to your computer and use it in GitHub Desktop.
Keep member and due date on converted checklist item
function keepMemberAndDueDateOnConvertedChecklistItem(notification)
{
var conv = new Notification(notification).convertedChecklistItemToCard(notification);
conv
.setDue(conv.source().due())
.addMember(conv.source().member());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment