trigger.rb 246 B

12345678910
  1. # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
  2. class Trigger < ApplicationModel
  3. include ChecksConditionValidation
  4. include CanSeed
  5. store :condition
  6. store :perform
  7. validates :name, presence: true
  8. end