0
0
Fork 0

Fix settings pages being cacheable by the browser (#12714)

Fix #12255
This commit is contained in:
Eugen Rochko 2019-12-30 04:38:30 +01:00 committed by GitHub
parent 353c94910b
commit 6e9e8d89fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View file

@ -2,10 +2,15 @@
class Settings::BaseController < ApplicationController
before_action :set_body_classes
before_action :set_cache_headers
private
def set_body_classes
@body_classes = 'admin'
end
def set_cache_headers
response.headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
end
end