trabajo-afectivo/lib/import/otrs/dynamic_field/text.rb
2022-01-01 14:38:12 +01:00

21 lines
538 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module Import
module OTRS
class DynamicField
class Text < Import::OTRS::DynamicField
def init_callback(dynamic_field)
@attribute_config.merge!(
data_type: 'input',
data_option: {
default: dynamic_field['Config']['DefaultValue'],
type: 'text',
maxlength: 255,
null: true,
}
)
end
end
end
end
end