summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/constants.js
blob: 20a4d2d84b4db9f6d6a019cdcc12b2048783cd8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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',
};