<%= link_to 'Destroy', post_comment_path(@post, comment), data: {:confirm => 'Are you sure?'}, :method => :delete %>
in the comment controller:
def destroy @post = Post.find(params[:post_id]) @comment = Comment.find(params[:id]) @comment.destroy respond_to do |format| format.html { redirect_to post_comments_path(@post) } format.xml { head :ok } end end
Ian Bishop Aug 23 '09 at 1:08 2009-08-23 01:08
source share