method
update_through_counter?
v6.0.0 -
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 109
def update_through_counter?(method)
case method
when :destroy
!through_reflection.inverse_updates_counter_cache?
when :nullify
false
else
true
end
end