trabajo-afectivo/app/models/email_address.rb

12 lines
374 B
Ruby
Raw Normal View History

2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
class EmailAddress < ApplicationModel
has_many :groups, after_add: :cache_update, after_remove: :cache_update
2015-08-28 00:53:14 +00:00
belongs_to :channel
validates :realname, presence: true
validates :email, presence: true
latest_change_support
end