blob: be768c08948ed9b72fd5c5e8dfde8988df642199 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
class CustomCssController < ApplicationController
before_action :set_cache_headers
def show
render plain: Setting.custom_css || '', content_type: 'text/css'
end
end
|