2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-05-25 12:30:12 +00:00
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Freshdesk
|
|
|
|
module ObjectAttribute
|
|
|
|
class Skip < Sequencer::Unit::Base
|
|
|
|
|
|
|
|
uses :resource
|
|
|
|
provides :action
|
|
|
|
|
|
|
|
def process
|
|
|
|
return if !resource['default']
|
|
|
|
|
|
|
|
state.provide(:action, :skipped)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|