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.
main
${ noResults }
7 lines
247 B
TypeScript
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
|
|||
}
|