method
associate_records_to_owner
v6.1.7.7 -
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 73
def associate_records_to_owner(owner, records)
association = owner.association(reflection.name)
if reflection.collection?
association.target = records
else
association.target = records.first
end
end