You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do you destroy the Comments that relate to a Post when it's destroyed, using AJAX?
def destroy
@post.comments.destroy
respond_to do |format|
format.html { redirect_to post_url, notice: 'Post was successfully destroyed.' }
format.json { head :no_content }
format.js
end
end
In your guide, please also specify, how do you destroy comments?
The text was updated successfully, but these errors were encountered: