diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-03-22 21:15:55 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-03-22 21:25:24 +0100 |
commit | 6e07c3de88791a0b342e0cc319590048117f9c2d (patch) | |
tree | 049f88d3f6d3ec0aeea09702a583deb86d6ef78f /server/middlewares | |
parent | 2d7653dc8726185615bab66353c4e3fb8fbb5a5f (diff) | |
download | PeerTube-6e07c3de88791a0b342e0cc319590048117f9c2d.tar.gz PeerTube-6e07c3de88791a0b342e0cc319590048117f9c2d.tar.zst PeerTube-6e07c3de88791a0b342e0cc319590048117f9c2d.zip |
Add video category support
Diffstat (limited to 'server/middlewares')
-rw-r--r-- | server/middlewares/validators/videos.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/middlewares/validators/videos.js b/server/middlewares/validators/videos.js index 7dc79c56f..37cc13372 100644 --- a/server/middlewares/validators/videos.js +++ b/server/middlewares/validators/videos.js | |||
@@ -21,6 +21,7 @@ const validatorsVideos = { | |||
21 | function videosAdd (req, res, next) { | 21 | function videosAdd (req, res, next) { |
22 | req.checkBody('videofile', 'Should have a valid file').isVideoFile(req.files) | 22 | req.checkBody('videofile', 'Should have a valid file').isVideoFile(req.files) |
23 | req.checkBody('name', 'Should have a valid name').isVideoNameValid() | 23 | req.checkBody('name', 'Should have a valid name').isVideoNameValid() |
24 | req.checkBody('category', 'Should have a valid category').isVideoCategoryValid() | ||
24 | req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid() | 25 | req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid() |
25 | req.checkBody('tags', 'Should have correct tags').isVideoTagsValid() | 26 | req.checkBody('tags', 'Should have correct tags').isVideoTagsValid() |
26 | 27 | ||
@@ -47,6 +48,7 @@ function videosAdd (req, res, next) { | |||
47 | function videosUpdate (req, res, next) { | 48 | function videosUpdate (req, res, next) { |
48 | req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4) | 49 | req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4) |
49 | req.checkBody('name', 'Should have a valid name').optional().isVideoNameValid() | 50 | req.checkBody('name', 'Should have a valid name').optional().isVideoNameValid() |
51 | req.checkBody('category', 'Should have a valid category').optional().isVideoCategoryValid() | ||
50 | req.checkBody('description', 'Should have a valid description').optional().isVideoDescriptionValid() | 52 | req.checkBody('description', 'Should have a valid description').optional().isVideoDescriptionValid() |
51 | req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid() | 53 | req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid() |
52 | 54 | ||