This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-23 19:33:27 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CustomCssController < ApplicationController
|
2019-06-10 03:28:13 -07:00
|
|
|
skip_before_action :store_current_location
|
2019-09-27 16:33:27 -07:00
|
|
|
skip_before_action :require_functional!
|
2019-06-10 03:28:13 -07:00
|
|
|
|
2018-08-23 19:33:27 -07:00
|
|
|
before_action :set_cache_headers
|
|
|
|
|
|
|
|
def show
|
2019-07-17 08:14:25 -07:00
|
|
|
expires_in 3.minutes, public: true
|
2018-08-23 19:33:27 -07:00
|
|
|
render plain: Setting.custom_css || '', content_type: 'text/css'
|
|
|
|
end
|
|
|
|
end
|