]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/reqValidators/index.js
Change api output for videos
[github/Chocobozzz/PeerTube.git] / server / middlewares / reqValidators / index.js
CommitLineData
9f10b292 1'use strict'
34ca3b52 2
f0f5567b
C
3const podsReqValidators = require('./pods')
4const remoteReqValidators = require('./remote')
5const videosReqValidators = require('./videos')
a030a9b2 6
f0f5567b 7const reqValidators = {
a030a9b2
C
8 pods: podsReqValidators,
9 remote: remoteReqValidators,
10 videos: videosReqValidators
9f10b292 11}
34ca3b52 12
9f10b292 13// ---------------------------------------------------------------------------
c45f7f84 14
9f10b292 15module.exports = reqValidators