You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
}
|