diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-18 16:34:50 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-18 16:34:50 +0100 |
commit | a4c157519738d89f8a77143b91e92dfd2e70380a (patch) | |
tree | fced708de0559a3f71712d79286d29d80641bd52 /server/middlewares/reqValidators | |
parent | 2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70 (diff) | |
download | PeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.tar.gz PeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.tar.zst PeerTube-a4c157519738d89f8a77143b91e92dfd2e70380a.zip |
Use map instead of pluck (lodash)
Diffstat (limited to 'server/middlewares/reqValidators')
-rw-r--r-- | server/middlewares/reqValidators/videos.js | 4 |
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 | ||
15 | function videosAdd (req, res, next) { | 15 | function 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 | ||