29 lines
668 B
Ruby
29 lines
668 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
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'] || allowed_default_attributes.include?(resource['name'])
|
|
|
|
state.provide(:action, :skipped)
|
|
end
|
|
|
|
private
|
|
|
|
def allowed_default_attributes
|
|
@allowed_default_attributes ||= %w[ticket_type]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|