method
find_join_association
v3.0.9 -
Show latest stable
- Class:
ActiveRecord::Associations::ClassMethods::JoinDependency
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