mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
14 lines
398 B
Ruby
14 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
|