Welcome to mirror list, hosted at ThFree Co, Russian Federation.

copy_cross_database_associations_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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')