]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/middlewares/validators/remote/index.js
Server: error if we add a pod that already exists
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / remote / index.js
1 'use strict'
2
3 const remoteSignatureValidators = require('./signature')
4 const remoteVideosValidators = require('./videos')
5
6 const validators = {
7 signature: remoteSignatureValidators,
8 videos: remoteVideosValidators
9 }
10
11 // ---------------------------------------------------------------------------
12
13 module.exports = validators