2013-06-12 15:59:58 +00:00
|
|
|
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2012-10-01 18:41:08 +00:00
|
|
|
class Signature < ApplicationModel
|
2013-01-01 20:29:26 +00:00
|
|
|
has_many :groups, :after_add => :cache_update, :after_remove => :cache_update
|
|
|
|
validates :name, :presence => true
|
2012-10-01 18:41:08 +00:00
|
|
|
end
|