add.rb 337 B

12345678910111213
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Sequencer::Unit::Import::Freshdesk::ObjectAttribute::Add < Sequencer::Unit::Base
  3. prepend ::Sequencer::Unit::Import::Common::Model::Mixin::Skip::Action
  4. skip_any_action
  5. uses :config
  6. def process
  7. ObjectManager::Attribute.add(config)
  8. end
  9. end