Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Module } from '@nestjs/common';
import { AuthCoreModule } from '@amalia/kernel/auth/core';
import { DesignerModule } from '@amalia/payout-definition/designer/core';
import { PeriodsModule } from '@amalia/payout-definition/periods/core';
import { CustomReportsModule } from '@amalia/reporting/custom-reports/core';
import { TeamsCoreModule } from '@amalia/tenants/teams/core';
import { HierarchyContextModule } from '@amalia/tenants/teams/hierarchy/core';
import { UsersModule } from '@amalia/tenants/users/core';
import { DashboardsController } from './dashboards.controller';
import { DashboardsService } from './dashboards.service';
@Module({
imports: [
AuthCoreModule,
CustomReportsModule,
DesignerModule,
PeriodsModule,
UsersModule,
TeamsCoreModule,
HierarchyContextModule,
],
providers: [DashboardsService],
controllers: [DashboardsController],
})
export class DashboardsModule {}
|