class Shrine::Derivation::Retrieve
Public Instance Methods
call()
click to toggle source
Returns a Shrine::UploadedFile
object pointing to the uploaded derivative if it exists on the storage.
# File lib/shrine/plugins/derivation_endpoint.rb, line 673 def call uploaded_file = shrine_class.uploaded_file(storage: upload_storage, id: upload_location) uploaded_file if uploaded_file.exists? end