Sha256: a0f4a23fd2732ea115cccb7740e5366463ff1a87908f86b16ed5b52e1fda2387
Contents?: true
Size: 613 Bytes
Versions: 24
Compression:
Stored size: 613 Bytes
Contents
module RailsEmailPreview class ApplicationController < ::RailsEmailPreview.parent_controller.constantize layout 'rails_email_preview/application' protected def prevent_browser_caching # Prevent back-button browser caching: # HTTP/1.1 response.headers['Cache-Control'] = 'no-store, no-cache, must-revalidate' # Date in the past response.headers['Expires'] = 'Mon, 26 Jul 1997 05:00:00 GMT' # Always modified response.headers['Last-Modified'] = Time.now.httpdate # HTTP/1.0 response.headers['Pragma'] = 'no-cache' end end end
Version data entries
24 entries across 24 versions & 1 rubygems