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

export_uploader.rb « bulk_imports « uploaders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 356e5ce028e5792a45b93c9bc467cddc9a4cd738 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module BulkImports
  class ExportUploader < ImportExportUploader
    EXTENSION_WHITELIST = %w[ndjson.gz].freeze
  end
end