aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/video-channel-syncs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/custom-validators/video-channel-syncs.ts')
-rw-r--r--server/helpers/custom-validators/video-channel-syncs.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/video-channel-syncs.ts b/server/helpers/custom-validators/video-channel-syncs.ts
new file mode 100644
index 000000000..c5a9afa96
--- /dev/null
+++ b/server/helpers/custom-validators/video-channel-syncs.ts
@@ -0,0 +1,6 @@
1import { VIDEO_CHANNEL_SYNC_STATE } from '@server/initializers/constants'
2import { exists } from './misc'
3
4export function isVideoChannelSyncStateValid (value: any) {
5 return exists(value) && VIDEO_CHANNEL_SYNC_STATE[value] !== undefined
6}