Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Last active September 27, 2021 05:55
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/6be5d093f1c06018123506ce4e8a12bd to your computer and use it in GitHub Desktop.
Save iaindooley/6be5d093f1c06018123506ce4e8a12bd to your computer and use it in GitHub Desktop.
createCardWithChecklistAndItems
console.log(
Card.create(
new Trellinator().boards().first().lists().first(),
"Hi there"
)
.addChecklist("My Checklist",function(cl)
{
cl.addItem("one");
cl.addItem("two");
cl.addItem("three");
})
.link()
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment