text.rb 460 B

1234567891011121314151617181920212223
  1. # Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
  2. module Import
  3. class Zendesk
  4. module ObjectAttribute
  5. class Text < Import::Zendesk::ObjectAttribute::Base
  6. def init_callback(_object_attribte)
  7. @data_option.merge!(
  8. type: 'text',
  9. maxlength: 255,
  10. )
  11. end
  12. private
  13. def data_type(_attribute)
  14. 'input'
  15. end
  16. end
  17. end
  18. end
  19. end