debian-mirror-gitlab/lib/gitlab/local_and_remote_storage_migration/pages_deployment_migrater.rb
2021-06-08 01:23:25 +05:30

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