text.rb 461 B

12345678910111213141516171819
  1. module Import
  2. module OTRS
  3. class DynamicField
  4. class Text < Import::OTRS::DynamicField
  5. def init_callback(dynamic_field)
  6. @attribute_config.merge!(
  7. data_type: 'input',
  8. data_option: {
  9. default: dynamic_field['Config']['DefaultValue'],
  10. type: 'text',
  11. maxlength: 255,
  12. null: true,
  13. }
  14. )
  15. end
  16. end
  17. end
  18. end
  19. end