Closes #6255 - Move files from `messaging/common` into the correct module - Remove common module between calendar and messaging `calendar-messaging-participant-manager` - Update and fix massaging and calendar participant matching - Create `MatchParticipantModule` --------- Co-authored-by: Charles Bochet <charles@twenty.com>
19 lines
824 B
TypeScript
19 lines
824 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { CalendarBlocklistManagerModule } from 'src/modules/calendar/blocklist-manager/calendar-blocklist-manager.module';
|
|
import { CalendarEventCleanerModule } from 'src/modules/calendar/calendar-event-cleaner/calendar-event-cleaner.module';
|
|
import { CalendarEventImportManagerModule } from 'src/modules/calendar/calendar-event-import-manager/calendar-event-import-manager.module';
|
|
import { CalendarEventParticipantManagerModule } from 'src/modules/calendar/calendar-event-participant-manager/calendar-event-participant-manager.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
CalendarBlocklistManagerModule,
|
|
CalendarEventCleanerModule,
|
|
CalendarEventImportManagerModule,
|
|
CalendarEventParticipantManagerModule,
|
|
],
|
|
providers: [],
|
|
exports: [],
|
|
})
|
|
export class CalendarModule {}
|