2018-08-24 11:33:27 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CustomCssController < ApplicationController
|
2019-06-10 19:28:13 +09:00
|
|
|
skip_before_action :store_current_location
|
2019-09-28 08:33:27 +09:00
|
|
|
skip_before_action :require_functional!
|
2021-05-31 00:57:47 +09:00
|
|
|
skip_before_action :update_user_sign_in
|
|
|
|
skip_before_action :set_session_activity
|
|
|
|
|
|
|
|
skip_around_action :set_locale
|
2019-06-10 19:28:13 +09:00
|
|
|
|
2018-08-24 11:33:27 +09:00
|
|
|
before_action :set_cache_headers
|
|
|
|
|
|
|
|
def show
|
2019-07-18 00:14:25 +09:00
|
|
|
expires_in 3.minutes, public: true
|
2021-05-31 00:57:47 +09:00
|
|
|
request.session_options[:skip] = true
|
2022-07-05 09:41:40 +09:00
|
|
|
render content_type: 'text/css'
|
2018-08-24 11:33:27 +09:00
|
|
|
end
|
|
|
|
end
|