123456789101112 |
- # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
- class Trigger < ApplicationModel
- include ChecksConditionValidation
- include CanSeed
- include Trigger::Assets
- store :condition
- store :perform
- validates :name, presence: true
- end
|