mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:24:03 +08:00
decf1f27cf
* Phase 0 for user-selectable theme components - Drops `key` column from the `themes` table - Drops `theme_key` column from the `user_options` table - Adds `theme_ids` (array of ints default []) column to the `user_options` table and migrates data from `theme_key` to the new column. - Removes the `default_theme_key` site setting and adds `default_theme_id` instead. - Replaces `theme_key` cookie with a new one called `theme_ids` - no longer need Theme.settings_for_client
29 lines
718 B
Ruby
29 lines
718 B
Ruby
class ThemesController < ::ApplicationController
|
|
def assets
|
|
theme_id = params[:id].to_i
|
|
|
|
if params[:id] == "default"
|
|
theme_id = nil
|
|
else
|
|
raise Discourse::NotFound unless Theme.where(id: theme_id).exists?
|
|
end
|
|
|
|
object = [:mobile, :desktop, :desktop_theme, :mobile_theme].map do |target|
|
|
link = Stylesheet::Manager.stylesheet_link_tag(target, 'all', params[:id])
|
|
if link
|
|
href = link.split(/["']/)[1]
|
|
if Rails.env.development?
|
|
href << (href.include?("?") ? "&" : "?")
|
|
href << SecureRandom.hex
|
|
end
|
|
{
|
|
target: target,
|
|
url: href
|
|
}
|
|
end
|
|
end.compact
|
|
|
|
render json: object.as_json
|
|
end
|
|
end
|