summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/constants.js
blob: c470da21765499113b9ddfe12c6f639dbb9a63a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// The `scheduling` status is only present on the client-side,
// it is used as the status when we are requesting to start an import.

export const STATUSES = {
  FINISHED: 'finished',
  FAILED: 'failed',
  SCHEDULED: 'scheduled',
  CREATED: 'created',
  STARTED: 'started',
  NONE: 'none',
  SCHEDULING: 'scheduling',
  CANCELLED: 'cancelled',
  TIMEOUT: 'timeout',
};