16 lines
362 B
Ruby
16 lines
362 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Trigger < ApplicationModel
|
|
include ChecksConditionValidation
|
|
include ChecksHtmlSanitized
|
|
include ChecksPerformValidation
|
|
include CanSeed
|
|
|
|
include Trigger::Assets
|
|
|
|
store :condition
|
|
store :perform
|
|
validates :name, presence: true
|
|
|
|
sanitized_html :note
|
|
end
|