Sha256: b2ced95766a972b2aa7315f8790d774b2f59a38a66546641782955a68a836b7c
Contents?: true
Size: 704 Bytes
Versions: 9
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true # Take a signed permanent reference for a blob representation and turn it into an expiring service URL for download. # Note: These URLs are publicly accessible. If you need to enforce access protection beyond the # security-through-obscurity factor of the signed blob and variation reference, you'll need to implement your own # authenticated redirection controller. class ActiveStorage::Representations::RedirectController < ActiveStorage::BaseController include ActiveStorage::SetBlob def show expires_in ActiveStorage.service_urls_expire_in redirect_to @blob.representation(params[:variation_key]).processed.url(disposition: params[:disposition]) end end
Version data entries
9 entries across 9 versions & 1 rubygems