Skip to content

Commit

Permalink
Improve naming
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisPalnitsky committed Apr 10, 2024
1 parent db5ca03 commit a469971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ function createImportBatchBuilder(requestUserId) {
return new ImportBatchBuilder(requestUserId);
}

// Class for building a batch of conversations and messages and pushing them to DB for Conversation Import functionality
class ImportBatchBuilder {
constructor(requestUserId) {
this.requestUserId = requestUserId;
Expand Down
2 changes: 1 addition & 1 deletion api/server/utils/import/importers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { createImportBatchBuilder } = require('./convoBuilder');
const { createImportBatchBuilder } = require('./importBatchBuilder');
const logger = require('~/config/winston');

// naive detection of export file type based on JSON structure
Expand Down

0 comments on commit a469971

Please sign in to comment.