2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-10-20 09:43:35 +00:00
|
|
|
|
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Kayako
|
|
|
|
class ObjectCount < Sequencer::Unit::Common::Provider::Attribute
|
|
|
|
include ::Sequencer::Unit::Import::Common::Model::Statistics::Mixin::EmptyDiff
|
|
|
|
prepend ::Sequencer::Unit::Import::Common::Model::Mixin::Skip::Action
|
|
|
|
|
|
|
|
skip_action :skipped, :failed
|
|
|
|
|
|
|
|
uses :model_class, :resources
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def statistics_diff
|
|
|
|
{
|
|
|
|
model_key => empty_diff.merge!(
|
|
|
|
total: resources.count
|
|
|
|
)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def model_key
|
|
|
|
model_class.name.pluralize.to_sym
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|