default.rb 331 B

123456789101112131415
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Sequencer::Unit::Import::Freshdesk::Contacts::Default < Sequencer::Unit::Import::Freshdesk::SubSequence::Object
  3. uses :skip_initial_contacts
  4. def object
  5. 'Contact'
  6. end
  7. def process
  8. return if skip_initial_contacts
  9. super
  10. end
  11. end