router.get('/get', verify, async (req, res) => {
const post = await Post.find({})
.populate("user")
.then(post => {
res.json({
status:200,
message: 'successfull post',
successfull:true,
post:post,
});
})
})
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)