mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Refactor to add Custom emoji sanitization (#24368)
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
This commit is contained in:
committed by
GitHub
parent
51e02e0d31
commit
7992d7a65a
@@ -16,8 +16,7 @@ class Admin::EmojisController < Admin::AdminController
|
||||
hijack do
|
||||
# fix the name
|
||||
name = File.basename(name, ".*")
|
||||
name = name.gsub(/[^a-z0-9]+/i, "_").gsub(/_{2,}/, "_").downcase
|
||||
|
||||
name = Emoji.sanitize_emoji_name(name)
|
||||
upload =
|
||||
UploadCreator.new(file.tempfile, file.original_filename, type: "custom_emoji").create_for(
|
||||
current_user.id,
|
||||
|
||||
Reference in New Issue
Block a user