instance method update

Ruby on Rails 8.0.4

Since v5.2.8.1

Available in: v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

update()

No documentation comment.

Source
# File activestorage/app/controllers/active_storage/disk_controller.rb, line 22
  def update
    if token = decode_verified_token
      if acceptable_content?(token)
        named_disk_service(token[:service_name]).upload token[:key], request.body, checksum: token[:checksum]
        head :no_content
      else
        head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
      end
    else
      head :not_found
    end
  rescue ActiveStorage::IntegrityError
    head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
  end

Defined in activestorage/app/controllers/active_storage/disk_controller.rb line 22 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveStorage::DiskController

Type at least 2 characters to search.

↑↓ navigate · open · esc close