Add missing job types to admin panel
This commit is contained in:
parent
f228e9f064
commit
0567049a98
|
@ -23,23 +23,28 @@ export class JobsComponent extends RestTable implements OnInit {
|
|||
jobTypes: JobTypeClient[] = [
|
||||
'all',
|
||||
|
||||
'activitypub-cleaner',
|
||||
'activitypub-follow',
|
||||
'activitypub-http-broadcast',
|
||||
'activitypub-http-broadcast-parallel',
|
||||
'activitypub-http-broadcast',
|
||||
'activitypub-http-fetcher',
|
||||
'activitypub-http-unicast',
|
||||
'activitypub-refresher',
|
||||
'activitypub-cleaner',
|
||||
'actor-keys',
|
||||
'after-video-channel-import',
|
||||
'email',
|
||||
'federate-video',
|
||||
'manage-video-torrent',
|
||||
'move-to-object-storage',
|
||||
'notify',
|
||||
'video-channel-import',
|
||||
'video-file-import',
|
||||
'video-import',
|
||||
'video-live-ending',
|
||||
'video-redundancy',
|
||||
'video-studio-edition',
|
||||
'video-transcoding',
|
||||
'videos-views-stats',
|
||||
'move-to-object-storage',
|
||||
'video-channel-import'
|
||||
'videos-views-stats'
|
||||
]
|
||||
|
||||
jobs: Job[] = []
|
||||
|
|
|
@ -7,28 +7,28 @@ import { SendEmailOptions } from './emailer.model'
|
|||
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed' | 'paused' | 'waiting-children'
|
||||
|
||||
export type JobType =
|
||||
| 'activitypub-http-unicast'
|
||||
| 'activitypub-http-broadcast'
|
||||
| 'activitypub-http-broadcast-parallel'
|
||||
| 'activitypub-http-fetcher'
|
||||
| 'activitypub-cleaner'
|
||||
| 'activitypub-follow'
|
||||
| 'video-file-import'
|
||||
| 'video-transcoding'
|
||||
| 'email'
|
||||
| 'video-import'
|
||||
| 'videos-views-stats'
|
||||
| 'activitypub-http-broadcast-parallel'
|
||||
| 'activitypub-http-broadcast'
|
||||
| 'activitypub-http-fetcher'
|
||||
| 'activitypub-http-unicast'
|
||||
| 'activitypub-refresher'
|
||||
| 'video-redundancy'
|
||||
| 'video-live-ending'
|
||||
| 'actor-keys'
|
||||
| 'after-video-channel-import'
|
||||
| 'email'
|
||||
| 'federate-video'
|
||||
| 'manage-video-torrent'
|
||||
| 'move-to-object-storage'
|
||||
| 'video-studio-edition'
|
||||
| 'video-channel-import'
|
||||
| 'after-video-channel-import'
|
||||
| 'notify'
|
||||
| 'federate-video'
|
||||
| 'video-channel-import'
|
||||
| 'video-file-import'
|
||||
| 'video-import'
|
||||
| 'video-live-ending'
|
||||
| 'video-redundancy'
|
||||
| 'video-studio-edition'
|
||||
| 'video-transcoding'
|
||||
| 'videos-views-stats'
|
||||
|
||||
export interface Job {
|
||||
id: number | string
|
||||
|
|
Loading…
Reference in New Issue