Sha256: d393a8d40691945b1f512d9e653d1ca8e1dbe1ee92472048893c1fdac292e58e

Contents?: true

Size: 610 Bytes

Versions: 196

Compression:

Stored size: 610 Bytes

Contents

# frozen_string_literal: true

module ActionController
  # When you're using the flash, it's generally used as a conditional on the view.
  # This means the content of the view depends on the flash. Which in turn means
  # that the ETag for a response should be computed with the content of the flash
  # in mind. This does that by including the content of the flash as a component
  # in the ETag that's generated for a response.
  module EtagWithFlash
    extend ActiveSupport::Concern

    include ActionController::ConditionalGet

    included do
      etag { flash unless flash.empty? }
    end
  end
end

Version data entries

196 entries across 184 versions & 11 rubygems

Version Path
jets-1.5.4 vendor/rails/actionpack/lib/action_controller/metal/etag_with_flash.rb
jets-1.5.3 vendor/rails/actionpack/lib/action_controller/metal/etag_with_flash.rb
jets-1.5.2 vendor/rails/actionpack/lib/action_controller/metal/etag_with_flash.rb
jets-1.5.1 vendor/rails/actionpack/lib/action_controller/metal/etag_with_flash.rb
jets-1.5.0 vendor/rails/actionpack/lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.2 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.2.rc1 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.1.1 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.1 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.1.rc1 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.0 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.0.rc2 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.0.rc1 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.0.beta2 lib/action_controller/metal/etag_with_flash.rb
actionpack-5.2.0.beta1 lib/action_controller/metal/etag_with_flash.rb
ruby-on-quails-0.1.0 actionpack/lib/action_controller/metal/etag_with_flash.rb