macro.rb 344 B

1234567891011
  1. # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
  2. class Macro < ApplicationModel
  3. include ChecksClientNotification
  4. include ChecksLatestChangeObserved
  5. include CanSeed
  6. store :perform
  7. validates :name, presence: true
  8. validates :ux_flow_next_up, inclusion: { in: %w[none next_task next_from_overview] }
  9. end