Chocobozzz/PeerTube

View on GitHub
packages/models/src/videos/channel-sync/video-channel-sync-state.enum.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const VideoChannelSyncState = {
  WAITING_FIRST_RUN: 1,
  PROCESSING: 2,
  SYNCED: 3,
  FAILED: 4
} as const

export type VideoChannelSyncStateType = typeof VideoChannelSyncState[keyof typeof VideoChannelSyncState]