Flowdock
method

update_metadata

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: GCSService
update_metadata(key, content_type:, disposition: nil, filename: nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/gcs_service.rb, line 33
    def update_metadata(key, content_type,, disposition: nil, filename: nil)
      instrument :update_metadata, key: key, content_type: content_type, disposition: disposition do
        file_for(key).update do |file|
          file.content_type = content_type
          file.content_disposition = content_disposition_with(type: disposition, filename: filename) if disposition && filename
        end
      end
    end
Register or log in to add new notes.