mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
13 lines
339 B
Ruby
13 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
|