Skip to content
Snippets Groups Projects
Unverified Commit 5ef216d0 authored by Jeong Arm's avatar Jeong Arm Committed by GitHub
Browse files

Remove set-cookie header on custom.css (#16314)

* Remove set-cookie header on custom.css

* Additional fix for set-cookie
parent f173275e
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,16 @@
class CustomCssController < ApplicationController
skip_before_action :store_current_location
skip_before_action :require_functional!
skip_before_action :update_user_sign_in
skip_before_action :set_session_activity
skip_around_action :set_locale
before_action :set_cache_headers
def show
expires_in 3.minutes, public: true
request.session_options[:skip] = true
render plain: Setting.custom_css || '', content_type: 'text/css'
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment