Add missing job types to admin panel

This commit is contained in:
Chocobozzz 2022-08-10 10:34:39 +02:00
parent f228e9f064
commit 0567049a98
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 25 additions and 20 deletions

View File

@ -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[] = []

View File

@ -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