DEV Community

nicolas2162
nicolas2162

Posted on

Answer: How to Delete Comment from Post on Node, express and Mongoose and Ajax

I am facing the same problem Except that before erasing the post, I want to make sure that the user deleting the post is the creator of the same post. My data set is a little bit different.

import mongoose from 'mongoose'
const postSchema = mongoose.Schema(
  {
    title: {
      type:

Top comments (0)