Which code would you add to return a 404 to the API caller if the user is not found in the database?
class UsersController < ApplicationController
def show
@user = User.find(params[:id])
render json: @user, status: :ok,
# Missing code
end