Class: ActiveRecord::Validations::AssociatedValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::Validator
- ActiveModel::EachValidator
- ActiveRecord::Validations::AssociatedValidator
- Defined in:
- activerecord/lib/active_record/validations/associated.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from ActiveModel::EachValidator
Attributes inherited from ActiveModel::Validator
Instance Method Summary collapse
Methods inherited from ActiveModel::EachValidator
#check_validity!, #initialize, #validate
Methods inherited from ActiveModel::Validator
#initialize, kind, #kind, #validate
Constructor Details
This class inherits a constructor from ActiveModel::EachValidator
Instance Method Details
permalink #validate_each(record, attribute, value) ⇒ Object
[View source]
6 7 8 9 10 11 12 |
# File 'activerecord/lib/active_record/validations/associated.rb', line 6 def validate_each(record, attribute, value) context = record_validation_context_for_association(record) if Array(value).reject { |association| valid_object?(association, context) }.any? record.errors.add(attribute, :invalid, **.merge(value: value)) end end |