2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2016-05-03 00:36:44 +00:00
|
|
|
class Trigger < ApplicationModel
|
2017-05-02 15:21:13 +00:00
|
|
|
include ChecksConditionValidation
|
2021-04-12 09:49:26 +00:00
|
|
|
include ChecksHtmlSanitized
|
2019-01-29 14:04:47 +00:00
|
|
|
include ChecksPerformValidation
|
2017-05-14 18:41:25 +00:00
|
|
|
include CanSeed
|
2017-04-27 14:57:19 +00:00
|
|
|
|
2017-11-23 08:14:03 +00:00
|
|
|
include Trigger::Assets
|
|
|
|
|
2016-05-03 00:36:44 +00:00
|
|
|
store :condition
|
|
|
|
store :perform
|
|
|
|
validates :name, presence: true
|
2021-04-12 09:49:26 +00:00
|
|
|
|
|
|
|
sanitized_html :note
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|