diff options
Diffstat (limited to 'shared/models/server/job.model.ts')
-rw-r--r-- | shared/models/server/job.model.ts | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/shared/models/server/job.model.ts b/shared/models/server/job.model.ts index 137da367c..ba1f83684 100644 --- a/shared/models/server/job.model.ts +++ b/shared/models/server/job.model.ts | |||
@@ -7,28 +7,28 @@ import { SendEmailOptions } from './emailer.model' | |||
7 | export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused' | 'waiting-children' | 7 | export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused' | 'waiting-children' |
8 | 8 | ||
9 | export type JobType = | 9 | export type JobType = |
10 | | 'activitypub-http-unicast' | ||
11 | | 'activitypub-http-broadcast' | ||
12 | | 'activitypub-http-broadcast-parallel' | ||
13 | | 'activitypub-http-fetcher' | ||
14 | | 'activitypub-cleaner' | 10 | | 'activitypub-cleaner' |
15 | | 'activitypub-follow' | 11 | | 'activitypub-follow' |
16 | | 'video-file-import' | 12 | | 'activitypub-http-broadcast-parallel' |
17 | | 'video-transcoding' | 13 | | 'activitypub-http-broadcast' |
18 | | 'email' | 14 | | 'activitypub-http-fetcher' |
19 | | 'video-import' | 15 | | 'activitypub-http-unicast' |
20 | | 'videos-views-stats' | ||
21 | | 'activitypub-refresher' | 16 | | 'activitypub-refresher' |
22 | | 'video-redundancy' | ||
23 | | 'video-live-ending' | ||
24 | | 'actor-keys' | 17 | | 'actor-keys' |
18 | | 'after-video-channel-import' | ||
19 | | 'email' | ||
20 | | 'federate-video' | ||
25 | | 'manage-video-torrent' | 21 | | 'manage-video-torrent' |
26 | | 'move-to-object-storage' | 22 | | 'move-to-object-storage' |
27 | | 'video-studio-edition' | ||
28 | | 'video-channel-import' | ||
29 | | 'after-video-channel-import' | ||
30 | | 'notify' | 23 | | 'notify' |
31 | | 'federate-video' | 24 | | 'video-channel-import' |
25 | | 'video-file-import' | ||
26 | | 'video-import' | ||
27 | | 'video-live-ending' | ||
28 | | 'video-redundancy' | ||
29 | | 'video-studio-edition' | ||
30 | | 'video-transcoding' | ||
31 | | 'videos-views-stats' | ||
32 | 32 | ||
33 | export interface Job { | 33 | export interface Job { |
34 | id: number | string | 34 | id: number | string |