2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-10-01 18:41:08 +00:00
|
|
|
class EmailAddress < ApplicationModel
|
2015-04-27 13:42:53 +00:00
|
|
|
has_many :groups, after_add: :cache_update, after_remove: :cache_update
|
2015-08-28 00:53:14 +00:00
|
|
|
belongs_to :channel
|
2015-04-27 13:42:53 +00:00
|
|
|
validates :realname, presence: true
|
|
|
|
validates :email, presence: true
|
2015-02-25 20:52:14 +00:00
|
|
|
|
|
|
|
latest_change_support
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|