Flowdock
method

records_by_owner

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: AlreadyLoaded
records_by_owner() public

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.rb, line 174
          def records_by_owner
            @records_by_owner ||= owners.each_with_object({}) do |owner, result|
              result[owner] = Array(owner.association(reflection.name).target)
            end
          end
Register or log in to add new notes.