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