Files
SolTube/server/core/helpers/custom-validators/video-channel-syncs.ts
ShreejitPanchal 6601501eff Init commit
2026-05-19 19:56:02 +08:00

7 lines
247 B
TypeScript

import { VIDEO_CHANNEL_SYNC_STATE } from '@server/initializers/constants.js'
import { exists } from './misc.js'
export function isVideoChannelSyncStateValid (value: any) {
return exists(value) && VIDEO_CHANNEL_SYNC_STATE[value] !== undefined
}