mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
13 lines
392 B
Ruby
13 lines
392 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveStorage
|
|
class RepresentationsController < BaseController
|
|
include ActiveStorage::SetBlob
|
|
include ActiveStorage::CheckBlobPermissions
|
|
|
|
def show
|
|
expires_in ActiveStorage.service_urls_expire_in
|
|
redirect_to @blob.representation(params[:variation_key]).processed.service_url(disposition: params[:disposition])
|
|
end
|
|
end
|
|
end
|