module Polyamorous::ReflectionExtensions
Public Instance Methods
Source
# File lib/polyamorous/activerecord/reflection.rb, line 3 def join_scope(table, foreign_table, foreign_klass) if respond_to?(:polymorphic?) && polymorphic? super.where!(foreign_table[foreign_type].eq(klass.name)) else super end end
Calls superclass method