1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-02 00:38:33 +09:00
YuruToot/app/models/concerns/obfuscate_filename.rb

17 lines
347 B
Ruby
Raw Normal View History

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?
file.original_filename = "media" + File.extname(file.original_filename)
end
end