What's the call to update a Rails record with new params, say, stored in a hash
variable? This:
@user.update(hash)
Will save the record, and since I want to put the call in a callback I don't want to save it, just prepare it to be saved correctly in the callback.