Removing Blocked seat from dashboard

This commit is contained in:
Mulu Mehari
2026-08-07 10:40:05 +03:00
parent b4ac92e14e
commit 6c075bed7b
7 changed files with 378 additions and 186 deletions

View File

@@ -1,13 +1,6 @@
import { Module } from '@nestjs/common';
import { DashboardController } from './dashboard.controller';
import { DashboardService } from './dashboard.service';
import { ReportsModule } from '../reports/reports.module';
@Module({
// ReportsModule owns the blocked-seat revenue loss rule; the dashboard's roll-up
// reads it from there instead of keeping a second copy of the definition.
imports: [ReportsModule],
controllers: [DashboardController],
providers: [DashboardService],
})
@Module({ controllers: [DashboardController], providers: [DashboardService] })
export class DashboardModule {}