2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
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
|
2022-04-25 10:55:32 +00:00
|
|
|
return if !resource['default'] || allowed_default_attributes.include?(resource['name'])
|
2021-05-25 12:30:12 +00:00
|
|
|
|
|
|
|
state.provide(:action, :skipped)
|
|
|
|
end
|
2022-04-25 10:55:32 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def allowed_default_attributes
|
|
|
|
@allowed_default_attributes ||= %w[ticket_type]
|
|
|
|
end
|
2021-05-25 12:30:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|