This commit is contained in:
Bastian Wagner
2026-06-24 15:29:48 +02:00
parent ba0b34d130
commit 94ef484108

View File

@@ -1,5 +1,6 @@
import { Module } from '@nestjs/common'; import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm'; import { TypeOrmModule } from '@nestjs/typeorm';
import { AuthModule } from '../auth/auth.module';
import { ListsModule } from '../lists/lists.module'; import { ListsModule } from '../lists/lists.module';
import { DailyDashboardSnapshotEntity } from './daily-dashboard-snapshot.entity'; import { DailyDashboardSnapshotEntity } from './daily-dashboard-snapshot.entity';
import { DashboardController } from './dashboard.controller'; import { DashboardController } from './dashboard.controller';
@@ -8,6 +9,7 @@ import { WeeklyListSuggestionSnapshotEntity } from './weekly-list-suggestion-sna
@Module({ @Module({
imports: [ imports: [
AuthModule,
ListsModule, ListsModule,
TypeOrmModule.forFeature([ TypeOrmModule.forFeature([
DailyDashboardSnapshotEntity, DailyDashboardSnapshotEntity,