Flowdock
method

through_scope_attributes

Importance_0
through_scope_attributes() private

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/has_many_through_association.rb, line 70
        def through_scope_attributes
          scope = through_scope || self.scope
          scope.where_values_hash(through_association.reflection.name.to_s).
            except!(through_association.reflection.foreign_key,
                    through_association.reflection.klass.inheritance_column)
        end
Register or log in to add new notes.