aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-08-10 10:34:39 +0200
committerChocobozzz <me@florianbigard.com>2022-08-10 10:34:39 +0200
commit0567049a9819d67070aa6d548a75a7e632a4aaa4 (patch)
treeec4e5b3613b4e6ab8c066595a10f45658ecf2c67 /shared/models
parentf228e9f064f27301e59533aac48fd6c2e533890d (diff)
downloadPeerTube-0567049a9819d67070aa6d548a75a7e632a4aaa4.tar.gz
PeerTube-0567049a9819d67070aa6d548a75a7e632a4aaa4.tar.zst
PeerTube-0567049a9819d67070aa6d548a75a7e632a4aaa4.zip
Add missing job types to admin panel
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/server/job.model.ts30
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'
7export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused' | 'waiting-children' 7export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused' | 'waiting-children'
8 8
9export type JobType = 9export 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
33export interface Job { 33export interface Job {
34 id: number | string 34 id: number | string