aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/jobs.ts
blob: 9700fbd12246e7171bcaaafa800e361e64e0e792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}