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!
|
2021-05-30 08:57:47 -07:00
|
|
|
skip_before_action :update_user_sign_in
|
|
|
|
skip_before_action :set_session_activity
|
|
|
|
|
|
|
|
skip_around_action :set_locale
|
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
|
2021-05-30 08:57:47 -07:00
|
|
|
request.session_options[:skip] = true
|
2022-07-04 17:41:40 -07:00
|
|
|
render content_type: 'text/css'
|
2018-08-23 19:33:27 -07:00
|
|
|
end
|
|
|
|
end
|