]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/job.model.ts
Add ability to list jobs
[github/Chocobozzz/PeerTube.git] / shared / models / job.model.ts
1 export type JobState = 'pending' | 'processing' | 'error' | 'success'
2 export type JobCategory = 'transcoding' | 'activitypub-http'
3
4 export interface Job {
5 id: number
6 state: JobState
7 category: JobCategory
8 handlerName: string
9 handlerInputData: any
10 createdAt: Date
11 updatedAt: Date
12 }