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-09-20 12:08:02 +00:00
|
|
|
class Template < ApplicationModel
|
2017-05-02 15:21:13 +00:00
|
|
|
include ChecksClientNotification
|
2017-01-31 17:13:45 +00:00
|
|
|
|
|
|
|
store :options
|
|
|
|
validates :name, presence: true
|
2020-09-08 15:06:23 +00:00
|
|
|
|
|
|
|
association_attributes_ignored :user
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|