23 lines
463 B
Ruby
23 lines
463 B
Ruby
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
class Sequencer
|
||
|
class Unit
|
||
|
module Import
|
||
|
module Kayako
|
||
|
module Case
|
||
|
class OwnerId < Sequencer::Unit::Common::Provider::Named
|
||
|
|
||
|
uses :resource, :id_map
|
||
|
|
||
|
private
|
||
|
|
||
|
def owner_id
|
||
|
id_map['User'].fetch(resource['assigned_agent']&.fetch('id'), 1)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|