blob: 6ccfd7361f756a7b38e488e501c20f0d632d91c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;(function () {
'use strict'
var checkErrors = require('./utils').checkErrors
var logger = require('../../helpers/logger')
var reqValidatorsPod = {
podsAdd: podsAdd
}
function podsAdd (req, res, next) {
req.checkBody('data.url', 'Should have an url').notEmpty().isURL({ require_protocol: true })
req.checkBody('data.publicKey', 'Should have a public key').notEmpty()
logger.debug('Checking podsAdd parameters', { parameters: req.body })
checkErrors(req, res, next)
}
// ---------------------------------------------------------------------------
module.exports = reqValidatorsPod
})()
|