You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
18 lines
377 B
8 years ago
|
# frozen_string_literal: true
|
||
8 years ago
|
module ObfuscateFilename
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
class_methods do
|
||
|
def obfuscate_filename(*args)
|
||
|
before_action { obfuscate_filename(*args) }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def obfuscate_filename(path)
|
||
|
file = params.dig(*path)
|
||
|
return if file.nil?
|
||
|
|
||
8 years ago
|
file.original_filename = 'media' + File.extname(file.original_filename)
|
||
8 years ago
|
end
|
||
|
end
|