trabajo-afectivo/app/models/trigger.rb
2022-01-01 14:38:12 +01:00

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