2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2015-10-15 13:23:41 +00:00
|
|
|
|
|
|
|
class Macro < ApplicationModel
|
2017-05-02 15:21:13 +00:00
|
|
|
include ChecksClientNotification
|
|
|
|
include ChecksLatestChangeObserved
|
2017-05-14 18:41:25 +00:00
|
|
|
include CanSeed
|
2017-01-31 17:13:45 +00:00
|
|
|
|
2015-10-15 13:23:41 +00:00
|
|
|
store :perform
|
|
|
|
validates :name, presence: true
|
2018-06-11 07:28:03 +00:00
|
|
|
validates :ux_flow_next_up, inclusion: { in: %w[none next_task next_from_overview] }
|
2015-10-15 13:23:41 +00:00
|
|
|
end
|