Skip to content

Instantly share code, notes, and snippets.

@atroche
Last active August 29, 2015 14:15
Show Gist options
  • Save atroche/4543d8a59f1bf9e91e7c to your computer and use it in GitHub Desktop.
Save atroche/4543d8a59f1bf9e91e7c to your computer and use it in GitHub Desktop.
(defn valid-ticket-field [ticket-field]
(and (:active ticket-field)
(not (field-types-to-ignore (:type ticket-field)))))
(defn valid-ticket-field [{:keys [active type]}]
(and active
(not (field-types-to-ignore type))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment