diff options
Diffstat (limited to 'server/initializers')
-rw-r--r-- | server/initializers/constants.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index b2f511152..6a59bf805 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -441,7 +441,9 @@ const VIDEO_IMPORT_STATES: { [ id in VideoImportState ]: string } = { | |||
441 | [VideoImportState.FAILED]: 'Failed', | 441 | [VideoImportState.FAILED]: 'Failed', |
442 | [VideoImportState.PENDING]: 'Pending', | 442 | [VideoImportState.PENDING]: 'Pending', |
443 | [VideoImportState.SUCCESS]: 'Success', | 443 | [VideoImportState.SUCCESS]: 'Success', |
444 | [VideoImportState.REJECTED]: 'Rejected' | 444 | [VideoImportState.REJECTED]: 'Rejected', |
445 | [VideoImportState.CANCELLED]: 'Cancelled', | ||
446 | [VideoImportState.PROCESSING]: 'Processing' | ||
445 | } | 447 | } |
446 | 448 | ||
447 | const ABUSE_STATES: { [ id in AbuseState ]: string } = { | 449 | const ABUSE_STATES: { [ id in AbuseState ]: string } = { |