method
exist?
v7.2.3 -
Show latest stable
- Class:
ActiveStorage::Service::AzureStorageService
exist?(key)public
No documentation available.
# File activestorage/lib/active_storage/service/azure_storage_service.rb, line 83
def exist?(key)
instrument :exist, key: key do |payload|
answer = blob_for(key).present?
payload[:exist] = answer
answer
end
end