mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 19:08:10 -05:00
e5888cf090
(uploads / avatars / non GET requests)
9 lines
352 B
Ruby
9 lines
352 B
Ruby
class SiteCustomizationsController < ApplicationController
|
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
|
|
|
|
def show
|
|
expires_in 1.year, public: true
|
|
render text: SiteCustomization.stylesheet_contents(params[:key], params[:target] == "mobile" ? :mobile : :desktop),
|
|
content_type: "text/css"
|
|
end
|
|
end
|