Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created August 17, 2019 08:59
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/f70962e51dceb20aa34daaa7c2a15bfd to your computer and use it in GitHub Desktop.
Save iaindooley/f70962e51dceb20aa34daaa7c2a15bfd to your computer and use it in GitHub Desktop.
Attach files to linked cards
function attachFilesToLinkedCards(notification)
{
var link = new Notification(notification).attachedLink();
link.card().cardsLinkedInAttachments().each(function(card)
{
card.attachLink(link.link());
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment