Public Instance methods
call()
Returns opened Shrine::UploadedFile object pointing to the uploaded if it exists on the storage.
[show source]
# File lib/shrine/plugins/derivation_endpoint.rb 684 def call 685 uploaded_file = shrine_class.uploaded_file(storage: upload_storage, id: upload_location) 686 uploaded_file.open(**upload_open_options) 687 uploaded_file 688 rescue Shrine::FileNotFound 689 end