method
associate_records_to_owner
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::Associations::Preloader::Association
associate_records_to_owner(owner, records)private
No documentation available.
# File activerecord/lib/active_record/associations/preloader/association.rb, line 229
def associate_records_to_owner(owner, records)
return if loaded?(owner)
association = owner.association(reflection.name)
if reflection.collection?
association.target = records
else
association.target = records.first
end
end