2018-08-23 22:33:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CustomCssController < ApplicationController
|
2019-06-10 06:28:13 -04:00
|
|
|
skip_before_action :store_current_location
|
|
|
|
|
2018-08-23 22:33:27 -04:00
|
|
|
before_action :set_cache_headers
|
|
|
|
|
|
|
|
def show
|
|
|
|
render plain: Setting.custom_css || '', content_type: 'text/css'
|
|
|
|
end
|
|
|
|
end
|