blob: 0d023842d27793621556946f1f941cbb635fb523 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;(function () {
'use strict'
var checkErrors = require('./utils').checkErrors
var logger = require('../../helpers/logger')
var pods = {}
pods.podsAdd = function (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 = pods
})()
|