aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/video-transcoding.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/video-transcoding.ts')
-rw-r--r--server/helpers/custom-validators/video-transcoding.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/video-transcoding.ts b/server/helpers/custom-validators/video-transcoding.ts
new file mode 100644
index 000000000..cf792f996
--- /dev/null
+++ b/server/helpers/custom-validators/video-transcoding.ts
@@ -0,0 +1,12 @@
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}