instance method
update
Ruby on Rails 5.2.8.1
Since v5.2.8.1Signature
update()
No documentation comment.
Source
# File activestorage/app/controllers/active_storage/disk_controller.rb, line 18
def update
if token = decode_verified_token
if acceptable_content?(token)
disk_service.upload token[:key], request.body, checksum: token[:checksum]
head :no_content
else
head :unprocessable_entity
end
end
rescue ActiveStorage::IntegrityError
head :unprocessable_entity
end
Defined in activestorage/app/controllers/active_storage/disk_controller.rb line 18
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::DiskController