aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-18 16:34:50 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-18 16:34:50 +0100
commita4c157519738d89f8a77143b91e92dfd2e70380a (patch)
treefced708de0559a3f71712d79286d29d80641bd52 /server/middlewares
parent2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70 (diff)
downloadPeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.tar.gz
PeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.tar.zst
PeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.zip
Use map instead of pluck (lodash)
Diffstat (limited to 'server/middlewares')
-rw-r--r--server/middlewares/reqValidators/videos.js4
1 files changed, 2 insertions, 2 deletions
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 = {
13} 13}
14 14
15function videosAdd (req, res, next) { 15function videosAdd (req, res, next) {
16 req.checkFiles('input_video[0].originalname', 'Should have an input video').notEmpty() 16 req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
17 req.checkFiles('input_video[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i) 17 req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
18 req.checkBody('name', 'Should have a name').isLength(1, 50) 18 req.checkBody('name', 'Should have a name').isLength(1, 50)
19 req.checkBody('description', 'Should have a description').isLength(1, 250) 19 req.checkBody('description', 'Should have a description').isLength(1, 250)
20 20