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/apps/meteor/app/importer/server/index.ts

21 lines
784 B

import { ProgressStep } from '../lib/ImporterProgressStep';
import { Importer } from './classes/Importer';
import { ImporterSelection } from './classes/ImporterSelection';
import { SelectionChannel } from './classes/ImporterSelectionChannel';
import { SelectionUser } from './classes/ImporterSelectionUser';
import { ImporterWebsocket } from './classes/ImporterWebsocket';
import { ImportersContainer } from './classes/ImportersContainer';
import './methods';
import './startup/setImportsToInvalid';
import './startup/store';
export { Importer, ImporterWebsocket, ProgressStep, ImporterSelection as Selection, SelectionChannel, SelectionUser };
export const Importers = new ImportersContainer();
Importers.add({
key: 'api',
name: 'API',
visible: false,
importer: Importer,
});