22 lines
464 B
Ruby
22 lines
464 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://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
|