Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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',
};