From d628d5e4d7007d1e35d558296dacf93dea869da8 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Tue, 4 Aug 2026 08:10:04 +0200 Subject: [PATCH] fix: add LoggingModule import to CashboxExportModule --- .../src/cashbox-export/cashbox-export.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts b/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts index 36d2d7b..5b79efe 100644 --- a/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts +++ b/myteamwallet_backend/src/cashbox-export/cashbox-export.module.ts @@ -1,5 +1,6 @@ import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; +import { LoggingModule } from 'src/database/logging/logging.module'; import { MailModule } from 'src/mail/mail.module'; import { Team } from 'src/teams/entities/team.entity'; import { TeamsModule } from 'src/teams/teams.module'; @@ -16,6 +17,7 @@ import { CashboxExportScheduler } from './cashbox-export.scheduler'; TypeOrmModule.forFeature([Team, CashboxExportSubscription]), TeamsModule, MailModule, + LoggingModule, ], }) export class CashboxExportModule {}