fix: IMAP Import (#13500)

/closes #13397
This commit is contained in:
neo773
2025-07-30 18:38:00 +05:30
committed by GitHub
parent 11a0fce1c8
commit 0e4e3acaba
5 changed files with 111 additions and 56 deletions
@@ -1,6 +1,7 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AuthModule } from 'src/engine/core-modules/auth/auth.module';
import { FeatureFlagModule } from 'src/engine/core-modules/feature-flag/feature-flag.module';
import { MessageQueueModule } from 'src/engine/core-modules/message-queue/message-queue.module';
import { TwentyConfigModule } from 'src/engine/core-modules/twenty-config/twenty-config.module';
@@ -17,6 +18,7 @@ import { ImapSmtpCalDavAPIService } from 'src/modules/connected-account/services
TwentyConfigModule,
TwentyORMModule,
FeatureFlagModule,
AuthModule,
],
providers: [ImapSmtpCalDavAPIService],
exports: [ImapSmtpCalDavAPIService],