Flowdock
method

find_join_association

Importance_0
v3.2.1 - Show latest stable - 0 notes - Class: JoinDependency
find_join_association(name_or_reflection, parent) protected

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/join_dependency.rb, line 135
      def find_join_association(name_or_reflection, parent)
        if String === name_or_reflection
          name_or_reflection = name_or_reflection.to_sym
        end

        join_associations.detect { |j|
          j.reflection == name_or_reflection && j.parent == parent
        }
      end
Register or log in to add new notes.