2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-10-01 18:41:08 +00:00
|
|
|
class Signature < ApplicationModel
|
2017-05-02 15:21:13 +00:00
|
|
|
include ChecksLatestChangeObserved
|
2017-07-20 13:58:03 +00:00
|
|
|
include ChecksHtmlSanitized
|
2020-02-20 13:34:03 +00:00
|
|
|
include HasCollectionUpdate
|
2017-01-31 17:13:45 +00:00
|
|
|
|
|
|
|
has_many :groups, after_add: :cache_update, after_remove: :cache_update
|
|
|
|
validates :name, presence: true
|
2017-07-20 13:58:03 +00:00
|
|
|
|
2021-04-12 09:49:26 +00:00
|
|
|
sanitized_html :body, :note
|
2017-07-20 13:58:03 +00:00
|
|
|
|
2020-02-20 13:34:03 +00:00
|
|
|
collection_push_permission('ticket.agent')
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|