The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/importer/lib/ImporterProgressStep.js

20 lines
818 B

/** The progress step that an importer is at. */
export const ProgressStep = Object.freeze({
UPLOADING: 'importer_uploading',
NEW: 'importer_new',
DOWNLOADING_FILE_URL: 'downloading_file_url',
DOWNLOAD_COMPLETE: 'download_complete',
PREPARING_STARTED: 'importer_preparing_started',
PREPARING_USERS: 'importer_preparing_users',
PREPARING_CHANNELS: 'importer_preparing_channels',
PREPARING_MESSAGES: 'importer_preparing_messages',
USER_SELECTION: 'importer_user_selection',
IMPORTING_STARTED: 'importer_importing_started',
IMPORTING_USERS: 'importer_importing_users',
IMPORTING_CHANNELS: 'importer_importing_channels',
IMPORTING_MESSAGES: 'importer_importing_messages',
FINISHING: 'importer_finishing',
DONE: 'importer_done',
ERROR: 'importer_import_failed',
CANCELLED: 'importer_import_cancelled',
});