summaryrefslogtreecommitdiff
path: root/app/services/bulk_create_integration_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/bulk_create_integration_service.rb')
-rw-r--r--app/services/bulk_create_integration_service.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/services/bulk_create_integration_service.rb b/app/services/bulk_create_integration_service.rb
index adb989be218..a7fe4c776b7 100644
--- a/app/services/bulk_create_integration_service.rb
+++ b/app/services/bulk_create_integration_service.rb
@@ -8,7 +8,7 @@ class BulkCreateIntegrationService
end
def execute
- service_list = ServiceList.new(batch, service_hash, association).to_array
+ service_list = ServiceList.new(batch, integration_hash, association).to_array
Integration.transaction do
results = bulk_insert(*service_list)
@@ -31,11 +31,11 @@ class BulkCreateIntegrationService
klass.insert_all(items_to_insert, returning: [:id])
end
- def service_hash
+ def integration_hash
if integration.template?
- integration.to_service_hash
+ integration.to_integration_hash
else
- integration.to_service_hash.tap { |json| json['inherit_from_id'] = integration.inherit_from_id || integration.id }
+ integration.to_integration_hash.tap { |json| json['inherit_from_id'] = integration.inherit_from_id || integration.id }
end
end