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

artifact_migrater.rb « local_and_remote_storage_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b25305382b2deeb15855cea713284b47339d02cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Gitlab
  module LocalAndRemoteStorageMigration
    class ArtifactMigrater < Gitlab::LocalAndRemoteStorageMigration::BaseMigrater
      private

      def items_with_files_stored_locally
        ::Ci::JobArtifact.with_files_stored_locally
      end

      def items_with_files_stored_remotely
        ::Ci::JobArtifact.with_files_stored_remotely
      end
    end
  end
end