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/6f551264c4cfbb2df570be29b3e7c55d to your computer and use it in GitHub Desktop.
Save iaindooley/6f551264c4cfbb2df570be29b3e7c55d to your computer and use it in GitHub Desktop.
Compare custom fields
function compareCustomFields(notification)
{
var changed = new Notification(notification).changedCustomFieldValue();
if(changed.value() < changed.card().customFieldValue("Other Field"))
{
changed.card().postComment("I'm less!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment