Module: ActionControllerTweaks::Caching

Extended by:
ActiveSupport::Concern
Defined in:
lib/action_controller_tweaks/caching.rb

Constant Summary collapse

HEADERS =
{
  # HTTP 1.1
  "Cache-Control" => "no-cache, no-store, pre-check=0, post-check=0",
  # HTTP 1.0
  "Pragma"        => "no-cache",
  # HTTP 1.0
  "Expires"       => "Mon, 01 Jan 1990 00:00:00 GMT",
}.freeze