trabajo-afectivo/app/models/email_address.rb

7 lines
265 B
Ruby
Raw Normal View History

class EmailAddress < 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