Class: Decidim::AttributeObject::NestedValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
decidim-core/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 'decidim-core/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, **options.merge(value:))
end