Flowdock
method

associate_records_to_owner

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: Association
associate_records_to_owner(owner, records) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.