gitlab-org--gitlab-foss/app/assets/javascripts/import_entities/constants.js

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