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/713d50de12dddd7b182e8e79a249783b to your computer and use it in GitHub Desktop.
Save iaindooley/713d50de12dddd7b182e8e79a249783b to your computer and use it in GitHub Desktop.
Checklist reports
function checklistReports(params,signature,original_time)
{
new Board(params).cards().each(function(card)
{
try
{
card.boardsLinkedInAttachments().first().cards().each(function(loop)
{
card.addChecklist(loop.currentList().name(),function(cl)
{
cl.addItem(loop.mobileFriendlyLink());
});
});
}
catch(e)
{
Notification.expectException(InvalidDataException,e);
}
});
ExecutionQueue.push("checklistReports",params,signature,original_time.addHours(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment