debian-mirror-gitlab/app/assets/javascripts/import_entities/constants.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
370 B
JavaScript
Raw Normal View History

2019-07-07 11:18:12 +05:30
// 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',
2021-04-17 20:07:23 +05:30
CREATED: 'created',
2019-07-07 11:18:12 +05:30
STARTED: 'started',
NONE: 'none',
SCHEDULING: 'scheduling',
2021-04-29 21:17:54 +05:30
CANCELLED: 'cancelled',
2022-07-16 23:28:13 +05:30
TIMEOUT: 'timeout',
2021-04-29 21:17:54 +05:30
};