2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/app/controllers/site_customizations_controller.rb

16 lines
547 B
Ruby

class SiteCustomizationsController < ApplicationController
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
def show
version = params["v"]
if version && version == request.headers['If-None-Match']
return render nothing: true, status: 304
end
response.headers["ETag"] = version if version
expires_in 1.year, public: true
render text: SiteCustomization.stylesheet_contents(params[:key], params[:target] == "mobile" ? :mobile : :desktop),
content_type: "text/css"
end
end