2018-01-08 15:29:34 +00:00
|
|
|
# this require is required (hehe) because of Rails autoloading
|
|
|
|
# which causes strange behavior not inheriting correctly
|
|
|
|
# from Import::OTRS::DynamicField
|
2018-04-26 08:55:53 +00:00
|
|
|
require_dependency 'import/zendesk/object_attribute/base'
|
2018-01-08 15:29:34 +00:00
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
module Import
|
2018-01-08 15:29:34 +00:00
|
|
|
class Zendesk
|
|
|
|
module ObjectAttribute
|
|
|
|
class Checkbox < Import::Zendesk::ObjectAttribute::Base
|
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
def init_callback(_object_attribte)
|
|
|
|
@data_option.merge!(
|
|
|
|
default: false,
|
|
|
|
options: {
|
|
|
|
true => 'yes',
|
|
|
|
false => 'no',
|
|
|
|
},
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def data_type(_attribute)
|
|
|
|
'boolean'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|