mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: upload images and fonts in themes via hijack
This commit is contained in:
@@ -13,6 +13,8 @@ class Admin::ThemesController < Admin::AdminController
|
||||
|
||||
def upload_asset
|
||||
path = params[:file].path
|
||||
|
||||
hijack do
|
||||
File.open(path) do |file|
|
||||
filename = params[:file]&.original_filename || File.basename(path)
|
||||
upload = UploadCreator.new(file, filename, for_theme: true).create_for(current_user.id)
|
||||
@@ -23,6 +25,7 @@ class Admin::ThemesController < Admin::AdminController
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def import
|
||||
@theme = nil
|
||||
|
||||
Reference in New Issue
Block a user