debian-mirror-gitlab/app/assets/javascripts/import_entities/constants.js
2022-07-16 19:58:13 +02:00

14 lines
370 B
JavaScript

// 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',
};