Class: Decidim::AttributeObject::NestedValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- Decidim::AttributeObject::NestedValidator
- Defined in:
- lib/decidim/attribute_object/nested_validator.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/decidim/attribute_object/nested_validator.rb', line 6 def validate_each(record, attribute, value) value = value.values if value.is_a?(Hash) return unless Array(value).reject { |r| valid_object?(r) }.any? record.errors.add(attribute, :invalid, **.merge(value: value)) end |