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