1
0
Fork 0
peertube/server/helpers/custom-validators/jobs.ts
Chocobozzz 94a5ff8a4a
Move job queue to redis
We'll use it as cache in the future.

/!\ You'll loose your old jobs (pending jobs too) so upgrade only when
you don't have pending job anymore.
2018-01-25 18:41:17 +01:00

14 lines
387 B
TypeScript

import { JobState } from '../../../shared/models'
import { exists } from './misc'
const jobStates: JobState[] = [ 'active', 'complete', 'failed', 'inactive', 'delayed' ]
function isValidJobState (value: JobState) {
return exists(value) && jobStates.indexOf(value) !== -1
}
// ---------------------------------------------------------------------------
export {
isValidJobState
}