[API] Fix: Validate id

This commit is contained in:
syuilo 2017-01-20 17:51:31 +09:00
parent e31eec542f
commit 2cc2ecb13c

View file

@ -28,6 +28,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)