35 lines
944 B
TypeScript
35 lines
944 B
TypeScript
|
import { logger } from '../../../helpers'
|
||
|
import { checkErrors } from '../utils'
|
||
|
|
||
|
function remoteVideosValidator (req, res, next) {
|
||
|
req.checkBody('data').isEachRemoteRequestVideosValid()
|
||
|
|
||
|
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
|
||
|
|
||
|
checkErrors(req, res, next)
|
||
|
}
|
||
|
|
||
|
function remoteQaduVideosValidator (req, res, next) {
|
||
|
req.checkBody('data').isEachRemoteRequestVideosQaduValid()
|
||
|
|
||
|
logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body })
|
||
|
|
||
|
checkErrors(req, res, next)
|
||
|
}
|
||
|
|
||
|
function remoteEventsVideosValidator (req, res, next) {
|
||
|
req.checkBody('data').isEachRemoteRequestVideosEventsValid()
|
||
|
|
||
|
logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body })
|
||
|
|
||
|
checkErrors(req, res, next)
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
remoteVideosValidator,
|
||
|
remoteQaduVideosValidator,
|
||
|
remoteEventsVideosValidator
|
||
|
}
|