mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
13 lines
398 B
Ruby
13 lines
398 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveStorage
|
|
class RepresentationsController < BaseController
|
|
include ActiveStorage::SetBlob
|
|
include ActiveStorage::CheckBlobPermissions
|
|
|
|
def show
|
|
expires_in ActiveStorage::Blob.service.url_expires_in
|
|
redirect_to @blob.representation(params[:variation_key]).processed.service_url(disposition: params[:disposition])
|
|
end
|
|
end
|
|
end
|