]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/import/video-import-state.enum.ts
Add ability to cancel & delete video imports
[github/Chocobozzz/PeerTube.git] / shared / models / videos / import / video-import-state.enum.ts
CommitLineData
bd45d503 1export const enum VideoImportState {
fbad87b0
C
2 PENDING = 1,
3 SUCCESS = 2,
2158ac90 4 FAILED = 3,
419b520c
C
5 REJECTED = 4,
6 CANCELLED = 5,
7 PROCESSING = 6
fbad87b0 8}