From a4c157519738d89f8a77143b91e92dfd2e70380a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 18 Mar 2016 16:34:50 +0100 Subject: Use map instead of pluck (lodash) --- server/middlewares/reqValidators/videos.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/middlewares/reqValidators') diff --git a/server/middlewares/reqValidators/videos.js b/server/middlewares/reqValidators/videos.js index 12e878e81..c20660452 100644 --- a/server/middlewares/reqValidators/videos.js +++ b/server/middlewares/reqValidators/videos.js @@ -13,8 +13,8 @@ const reqValidatorsVideos = { } function videosAdd (req, res, next) { - req.checkFiles('input_video[0].originalname', 'Should have an input video').notEmpty() - req.checkFiles('input_video[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i) + req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty() + req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i) req.checkBody('name', 'Should have a name').isLength(1, 50) req.checkBody('description', 'Should have a description').isLength(1, 250) -- cgit v1.2.3