mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-25 21:13:01 +03:00
b3d9bed91d
* Add react-email * WIP * Fix import error * Rename services * Update logging * Update email template * Update email template * Add Base Email template * Move to proper place * Remove test files * Update logo * Add email theme * Revert "Remove test files" This reverts commitfe062dd051
. * Add email theme 2 * Revert "Revert "Remove test files"" This reverts commit6c6471273a
. * Revert "Revert "Revert "Remove test files""" This reverts commitf851333c24
. * Revert "Revert "Revert "Revert "Remove test files"""" This reverts commit7838e19e88
. * Fix theme
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { EnvironmentModule } from 'src/integrations/environment/environment.module';
|
|
import { EnvironmentService } from 'src/integrations/environment/environment.service';
|
|
import { LoggerModule } from 'src/integrations/logger/logger.module';
|
|
import { loggerModuleFactory } from 'src/integrations/logger/logger.module-factory';
|
|
import { JobsModule } from 'src/integrations/message-queue/jobs.module';
|
|
import { MessageQueueModule } from 'src/integrations/message-queue/message-queue.module';
|
|
import { messageQueueModuleFactory } from 'src/integrations/message-queue/message-queue.module-factory';
|
|
import { IntegrationsModule } from 'src/integrations/integrations.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
EnvironmentModule.forRoot({}),
|
|
LoggerModule.forRootAsync({
|
|
useFactory: loggerModuleFactory,
|
|
inject: [EnvironmentService],
|
|
}),
|
|
MessageQueueModule.forRoot({
|
|
useFactory: messageQueueModuleFactory,
|
|
inject: [EnvironmentService],
|
|
}),
|
|
JobsModule,
|
|
IntegrationsModule,
|
|
],
|
|
})
|
|
export class QueueWorkerModule {}
|