method
update_through_counter?
rails latest stable - Class:
ActiveRecord::Associations::HasManyThroughAssociation
update_through_counter?(method)private
No documentation available.
# File activerecord/lib/active_record/associations/has_many_through_association.rb, line 119
def update_through_counter?(method)
case method
when :destroy
!through_reflection.inverse_updates_counter_cache?
when :nullify
false
else
true
end
end