次のようなことを行う場合、RecordNotFoundエラーに対する正しい応答は何である必要がありますか。
def destroy
@post = current_user.posts.find(params[:id])
@post.destroy
head :no_content
end
次のようなことを行う場合、RecordNotFoundエラーに対する正しい応答は何である必要がありますか。
def destroy
@post = current_user.posts.find(params[:id])
@post.destroy
head :no_content
end