2e0eeda52e
Fixes https://github.com/twentyhq/core-team-issues/issues/2032 ## Before https://github.com/user-attachments/assets/5804d3e7-1c03-4eb9-9203-64656438f5d1 ## After https://github.com/user-attachments/assets/9f96458c-d2a5-481a-b6b2-4d88f0daa98a
13 lines
577 B
TypeScript
13 lines
577 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { WorkspaceManyOrAllFlatEntityMapsCacheModule } from 'src/engine/metadata-modules/flat-entity/services/workspace-many-or-all-flat-entity-maps-cache.module';
|
|
import { TwentyORMModule } from 'src/engine/twenty-orm/twenty-orm.module';
|
|
import { DashboardSyncService } from 'src/modules/dashboard-sync/services/dashboard-sync.service';
|
|
|
|
@Module({
|
|
imports: [TwentyORMModule, WorkspaceManyOrAllFlatEntityMapsCacheModule],
|
|
providers: [DashboardSyncService],
|
|
exports: [DashboardSyncService],
|
|
})
|
|
export class DashboardSyncModule {}
|