diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-18 16:13:54 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-18 16:13:54 +0200 |
commit | 528a9efa8272532bbd0dafc35c3e05e57c50f61e (patch) | |
tree | 62d4417df4ab9b2e53c44dc7271be81b88e4e0e5 /server/middlewares/reqValidators/pods.js | |
parent | b2e4c0ba1a33b8a50491a1f8d111468a7da5640f (diff) | |
download | PeerTube-528a9efa8272532bbd0dafc35c3e05e57c50f61e.tar.gz PeerTube-528a9efa8272532bbd0dafc35c3e05e57c50f61e.tar.zst PeerTube-528a9efa8272532bbd0dafc35c3e05e57c50f61e.zip |
Try to make a better communication (between pods) module
Diffstat (limited to 'server/middlewares/reqValidators/pods.js')
-rw-r--r-- | server/middlewares/reqValidators/pods.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/middlewares/reqValidators/pods.js b/server/middlewares/reqValidators/pods.js index 77449480c..78a4b76c1 100644 --- a/server/middlewares/reqValidators/pods.js +++ b/server/middlewares/reqValidators/pods.js | |||
@@ -26,8 +26,10 @@ function makeFriends (req, res, next) { | |||
26 | } | 26 | } |
27 | 27 | ||
28 | function podsAdd (req, res, next) { | 28 | function podsAdd (req, res, next) { |
29 | req.checkBody('data.url', 'Should have an url').notEmpty().isURL({ require_protocol: true }) | 29 | req.checkBody('url', 'Should have an url').notEmpty().isURL({ require_protocol: true }) |
30 | req.checkBody('data.publicKey', 'Should have a public key').notEmpty() | 30 | req.checkBody('publicKey', 'Should have a public key').notEmpty() |
31 | |||
32 | // TODO: check we don't have it already | ||
31 | 33 | ||
32 | logger.debug('Checking podsAdd parameters', { parameters: req.body }) | 34 | logger.debug('Checking podsAdd parameters', { parameters: req.body }) |
33 | 35 | ||