method
associate_records_to_owner
v5.2.3 -
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 44
def associate_records_to_owner(owner, records)
association = owner.association(reflection.name)
association.loaded!
if reflection.collection?
association.target.concat(records)
else
association.target = records.first unless records.empty?
end
end