-
Notifications
You must be signed in to change notification settings - Fork 7
inclusion
Myles Megyesi edited this page Oct 6, 2012
·
3 revisions
(defvalidator user-validator
[:color :inclusion {:in [:blue :orange]}])
(user-validator {:color :pink})
; {:color ["is not included in the list"]}
(user-validator {:color :blue})
; {}
-
:in
Value must be in the given collection. Default[]
.
"must be included in the list"