2018-01-08 15:29:34 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2015-12-17 18:15:50 +00:00
|
|
|
|
|
|
|
module Import
|
2018-01-08 15:29:34 +00:00
|
|
|
class Zendesk < Import::Base
|
|
|
|
include Import::Mixin::Sequence
|
2015-12-17 18:15:50 +00:00
|
|
|
|
2018-01-08 15:29:34 +00:00
|
|
|
def start
|
|
|
|
process
|
|
|
|
end
|
2016-11-08 15:21:30 +00:00
|
|
|
|
2018-01-08 15:29:34 +00:00
|
|
|
def sequence_name
|
|
|
|
'Import::Zendesk::Full'
|
|
|
|
end
|
2016-11-08 15:21:30 +00:00
|
|
|
end
|
2015-12-17 18:15:50 +00:00
|
|
|
end
|