aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-state.enum.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/video-state.enum.ts')
-rw-r--r--shared/models/videos/video-state.enum.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/models/videos/video-state.enum.ts b/shared/models/videos/video-state.enum.ts
index 31c501932..49d997f24 100644
--- a/shared/models/videos/video-state.enum.ts
+++ b/shared/models/videos/video-state.enum.ts
@@ -1,5 +1,7 @@
1export const enum VideoState { 1export const enum VideoState {
2 PUBLISHED = 1, 2 PUBLISHED = 1,
3 TO_TRANSCODE = 2, 3 TO_TRANSCODE = 2,
4 TO_IMPORT = 3 4 TO_IMPORT = 3,
5 WAITING_FOR_LIVE = 4,
6 LIVE_ENDED = 5
5} 7}