You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
22 lines
620 B
TypeScript
22 lines
620 B
TypeScript
import { JobState } from '@peertube/peertube-models'
|
|||
import { jobTypes } from '@server/lib/job-queue/job-queue.js'
|
|||
import { exists } from './misc.js'
|
|||
|
|||
const jobStates = new Set<JobState>([ 'active', 'completed', 'failed', 'waiting', 'delayed', 'paused', 'waiting-children', 'prioritized' ])
|
|||
|
|||
function isValidJobState (value: JobState) {
|
|||
return exists(value) && jobStates.has(value)
|
|||
}
|
|||
|
|||
function isValidJobType (value: any) {
|
|||
return exists(value) && jobTypes.includes(value)
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
jobStates,
|
|||
isValidJobState,
|
|||
isValidJobType
|
|||
}
|