method
update_through_counter?
v4.2.9 -
Show 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 143
def update_through_counter?(method)
case method
when :destroy
!inverse_updates_counter_cache?(through_reflection)
when :nullify
false
else
true
end
end