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

pages_deployment_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: 704379363321801c7d6a186be65d0d77fd39c738 (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 PagesDeploymentMigrater < Gitlab::LocalAndRemoteStorageMigration::BaseMigrater
      private

      def items_with_files_stored_locally
        ::PagesDeployment.with_files_stored_locally
      end

      def items_with_files_stored_remotely
        ::PagesDeployment.with_files_stored_remotely
      end
    end
  end
end