dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ScheduledEmailModule cluster_ScheduledEmailModule_imports cluster_ScheduledEmailModule_exports cluster_ScheduledEmailModule_providers DynamicMailFieldsModule DynamicMailFieldsModule ScheduledEmailModule ScheduledEmailModule DynamicMailFieldsModule->ScheduledEmailModule ScheduledEmailProcessorService ScheduledEmailProcessorService ScheduledEmailModule->ScheduledEmailProcessorService ScheduledEmailProcessorService ScheduledEmailProcessorService ScheduledEmailProcessorService->ScheduledEmailModule

File

apps/recallassess/recallassess-api/src/api/shared/scheduled-email/scheduled-email.module.ts

// BNestEmailLogModule removed - using custom EmailLogController with category filtering
import { BNestPrismaModule } from "@bish-nest/core/services";
import { forwardRef, Module } from "@nestjs/common";
import { EmailModule } from "../../shared/email/email.module";
import { DynamicMailFieldsModule } from "../dynamic-mail-fields/dynamic-mail-fields.module";
import { ScheduledEmailProcessorService } from "./scheduled-email-processor.service";

@Module({
  imports: [
    BNestPrismaModule,
    DynamicMailFieldsModule,
    // BNestEmailLogModule removed - using custom EmailLogController with category filtering
    forwardRef(() => EmailModule),
  ],
  providers: [ScheduledEmailProcessorService],
  exports: [ScheduledEmailProcessorService],
})
export class ScheduledEmailModule {}

results matching ""

    No results matching ""