]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/video-transcoding.ts
Increase player control bar size
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / video-transcoding.ts
CommitLineData
ad5db104
C
1import { exists } from './misc'
2
3function isValidCreateTranscodingType (value: any) {
4 return exists(value) &&
5 (value === 'hls' || value === 'webtorrent')
6}
7
8// ---------------------------------------------------------------------------
9
10export {
11 isValidCreateTranscodingType
12}