module ActionController::ConditionalGet

def no_store

resource may not be stored in any cache.
Sets an HTTP 1.1 +Cache-Control+ header of no-store. This means the
def no_store
  response.cache_control.replace(no_store: true)
end