2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PropagateIntegrationInheritWorker
|
|
|
|
include ApplicationWorker
|
|
|
|
|
|
|
|
feature_category :integrations
|
|
|
|
idempotent!
|
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def perform(integration_id, min_id, max_id)
|
|
|
|
integration = Service.find_by_id(integration_id)
|
|
|
|
return unless integration
|
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
batch = Service.where(id: min_id..max_id).by_type(integration.type).inherit_from_id(integration.id)
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
BulkUpdateIntegrationService.new(integration, batch).execute
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
end
|