Class: ActiveStorage::Representations::ProxyController
- Inherits:
-
BaseController
- Object
- BaseController
- ActiveStorage::Representations::ProxyController
- Includes:
- DisableSession, Streaming
- Defined in:
- app/controllers/active_storage/representations/proxy_controller.rb
Overview
Proxy files through application. This avoids having a redirect and makes files easier to cache.
WARNING: All Active Storage controllers are publicly accessible by default. The generated URLs are hard to guess, but permanent by design. If your files require a higher level of protection consider implementing Authenticated Controllers.
Constant Summary
Constants included from Streaming
Streaming::DEFAULT_BLOB_STREAMING_DISPOSITION
Instance Method Summary collapse
Instance Method Details
#show ⇒ Object
13 14 15 16 17 |
# File 'app/controllers/active_storage/representations/proxy_controller.rb', line 13 def show http_cache_forever public: true do send_blob_stream @representation, disposition: params[:disposition] end end |