mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 15:05:26 +08:00
14 lines
339 B
Ruby
14 lines
339 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ActiveStorage
|
||
|
class BlobsController < BaseController
|
||
|
include ActiveStorage::SetBlob
|
||
|
include ActiveStorage::CheckBlobPermissions
|
||
|
|
||
|
def show
|
||
|
expires_in ActiveStorage::Blob.service.url_expires_in
|
||
|
redirect_to @blob.service_url(disposition: params[:disposition])
|
||
|
end
|
||
|
end
|
||
|
end
|