trabajo-afectivo/app/models/signature.rb

7 lines
262 B
Ruby
Raw Normal View History

class Signature < ApplicationModel
has_many :groups, :after_add => :cache_update, :after_remove => :cache_update
after_create :cache_delete
after_update :cache_delete
after_destroy :cache_delete
end