summaryrefslogtreecommitdiff
path: root/app/services/ci/copy_cross_database_associations_service.rb
blob: c69e966dc04c350552afa835b9708213e5d08878 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Ci
  class CopyCrossDatabaseAssociationsService
    def execute(old_build, new_build)
      ServiceResponse.success
    end
  end
end

Ci::CopyCrossDatabaseAssociationsService.prepend_mod_with('Ci::CopyCrossDatabaseAssociationsService')