d4da4829d4
Enables frozen string for new files in directories that had been previously covered in previous MR's. Partially addresses #47424.
17 lines
255 B
Ruby
17 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ImportExportUploader < AttachmentUploader
|
|
EXTENSION_WHITELIST = %w[tar.gz].freeze
|
|
|
|
def extension_whitelist
|
|
EXTENSION_WHITELIST
|
|
end
|
|
|
|
def move_to_store
|
|
true
|
|
end
|
|
|
|
def move_to_cache
|
|
false
|
|
end
|
|
end
|