method
update
v6.0.0 -
Show latest stable
- Class:
ActiveStorage::DiskController
update()public
No documentation available.
# File activestorage/app/controllers/active_storage/disk_controller.rb, line 20
def update
if token = decode_verified_token
if acceptable_content?(token)
disk_service.upload token[:key], request.body, checksum: token[:checksum]
else
head :unprocessable_entity
end
else
head :not_found
end
rescue ActiveStorage::IntegrityError
head :unprocessable_entity
end