about summary refs log tree commit diff
path: root/app/controllers/custom_css_controller.rb
blob: 31e501609d809738ebf56af4166fda4b72a64947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class CustomCssController < ApplicationController
  before_action :set_cache_headers

  def show
    skip_session!
    render plain: Setting.custom_css || '', content_type: 'text/css'
  end
end