2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
module Import
|
2018-01-08 15:29:34 +00:00
|
|
|
class Zendesk
|
|
|
|
module ObjectAttribute
|
|
|
|
class Regexp < Import::Zendesk::ObjectAttribute::Base
|
|
|
|
|
2016-12-19 08:59:54 +00:00
|
|
|
def init_callback(object_attribte)
|
|
|
|
@data_option.merge!(
|
|
|
|
type: 'text',
|
|
|
|
maxlength: 255,
|
|
|
|
regex: object_attribte.regexp_for_validation,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def data_type(_attribute)
|
|
|
|
'input'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|