gitlab-org--gitlab-foss/lib/gitlab/local_and_remote_storage_mi.../pages_deployment_migrater.rb

18 lines
418 B
Ruby

# 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