debian-mirror-gitlab/lib/gitlab/no_cache_headers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
451 B
Ruby
Raw Normal View History

2020-02-01 01:16:34 +05:30
# frozen_string_literal: true
module Gitlab
module NoCacheHeaders
DEFAULT_GITLAB_NO_CACHE_HEADERS = {
'Cache-Control' => "#{ActionDispatch::Http::Cache::Response::DEFAULT_CACHE_CONTROL}, no-store, no-cache",
2022-10-11 01:57:18 +05:30
'Pragma' => 'no-cache', # HTTP 1.0 compatibility
'Expires' => 'Fri, 01 Jan 1990 00:00:00 GMT'
2020-02-01 01:16:34 +05:30
}.freeze
def no_cache_headers
raise "#no_cache_headers is not implemented for this object"
end
end
end