以下のコードの空欄に入る適切なパスヘルパーは何ですか? ```ruby def destroy @post = Post.find(params[:id]) @post.destroy! redirect_to ______, notice: "Post was successfully destroyed." end ```