2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const podsReqValidators = require('./pods')
|
|
|
|
const remoteReqValidators = require('./remote')
|
|
|
|
const videosReqValidators = require('./videos')
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const reqValidators = {
|
2016-02-07 11:47:30 +01:00
|
|
|
pods: podsReqValidators,
|
|
|
|
remote: remoteReqValidators,
|
|
|
|
videos: videosReqValidators
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
module.exports = reqValidators
|