2013-06-12 15:59:58 +00:00
|
|
|
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2012-04-16 11:57:33 +00:00
|
|
|
class Group < ApplicationModel
|
2012-07-29 18:55:51 +00:00
|
|
|
has_and_belongs_to_many :users, :after_add => :cache_update, :after_remove => :cache_update
|
2012-10-01 18:41:08 +00:00
|
|
|
belongs_to :email_address
|
|
|
|
belongs_to :signature
|
2012-10-14 21:00:33 +00:00
|
|
|
validates :name, :presence => true
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|