Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created September 21, 2019 12:20
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/c1ce15aa4a093936afbfbe42d316f5b7 to your computer and use it in GitHub Desktop.
Save iaindooley/c1ce15aa4a093936afbfbe42d316f5b7 to your computer and use it in GitHub Desktop.
Set blank custom fields
function setBlankCustomFields()
{
new Trellinator().board("My Board").cards().each(function(card)
{
if(!card.customFieldValue("My Field"))
card.setCustomFieldValue("My Field","Some Value");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment