method

find_join_association

rails latest stable - Class: ActiveRecord::Associations::ClassMethods::JoinDependency

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

find_join_association(name_or_reflection, parent)
protected

No documentation available.

# File activerecord/lib/active_record/associations.rb, line 1967
            def find_join_association(name_or_reflection, parent)
              case name_or_reflection
              when Symbol, String
                join_associations.detect {|j| (j.reflection.name == name_or_reflection.to_s.intern) && (j.parent == parent)}
              else
                join_associations.detect {|j| (j.reflection == name_or_reflection) && (j.parent == parent)}
              end
            end