[API] Fix: Validate id
This commit is contained in:
parent
4ad04f5bfa
commit
1c9ec60140
@ -25,6 +25,11 @@ module.exports = (params, user) =>
|
||||
return rej('post_id is required');
|
||||
}
|
||||
|
||||
// Validate id
|
||||
if (!mongo.ObjectID.isValid(postId)) {
|
||||
return rej('incorrect post_id');
|
||||
}
|
||||
|
||||
// Get likee
|
||||
const post = await Post.findOne({
|
||||
_id: new mongo.ObjectID(postId)
|
||||
|
Loading…
Reference in New Issue
Block a user