Class: ActiveStorage::Blobs::ProxyController

Inherits:
ActiveStorage::BaseController
  • Object
show all
Includes:
SetBlob, SetHeaders
Defined in:
app/controllers/active_storage/blobs/proxy_controller.rb

Overview

Proxy files through application. This avoids having a redirect and makes files easier to cache.

Instance Method Summary collapse

Instance Method Details

#showObject



8
9
10
11
12
13
# File 'app/controllers/active_storage/blobs/proxy_controller.rb', line 8

def show
  http_cache_forever public: true do
    set_content_headers_from @blob
    stream @blob
  end
end