validates input_options based on input type

This commit is contained in:
Mark Moser
2016-08-22 11:49:02 -05:00
parent 404555f674
commit bdec83b3b6
5 changed files with 89 additions and 7 deletions

View File

@ -0,0 +1,11 @@
class InputOptionsPresenceValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
return true unless record.input_type =~ /radio|check/i
return true if value.present? && value.count > 0
record.errors[attribute] << (options[:message] ||
"You must provide answer options for the selected input type.")
false
end
end