]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - middlewares/reqValidators/index.js
Require on the top of the files
[github/Chocobozzz/PeerTube.git] / middlewares / reqValidators / index.js
1 'use strict'
2
3 var podsReqValidators = require('./pods')
4 var remoteReqValidators = require('./remote')
5 var videosReqValidators = require('./videos')
6
7 var reqValidators = {
8 pods: podsReqValidators,
9 remote: remoteReqValidators,
10 videos: videosReqValidators
11 }
12
13 // ---------------------------------------------------------------------------
14
15 module.exports = reqValidators