]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/import/video-import-state.enum.ts
Added "total views" in the my channels list (#5007)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / import / video-import-state.enum.ts
1 export const enum VideoImportState {
2 PENDING = 1,
3 SUCCESS = 2,
4 FAILED = 3,
5 REJECTED = 4,
6 CANCELLED = 5,
7 PROCESSING = 6
8 }