fix: add LoggingModule import to CashboxExportModule
This commit is contained in:
@@ -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 { LoggingModule } from 'src/database/logging/logging.module';
|
||||||
import { MailModule } from 'src/mail/mail.module';
|
import { MailModule } from 'src/mail/mail.module';
|
||||||
import { Team } from 'src/teams/entities/team.entity';
|
import { Team } from 'src/teams/entities/team.entity';
|
||||||
import { TeamsModule } from 'src/teams/teams.module';
|
import { TeamsModule } from 'src/teams/teams.module';
|
||||||
@@ -16,6 +17,7 @@ import { CashboxExportScheduler } from './cashbox-export.scheduler';
|
|||||||
TypeOrmModule.forFeature([Team, CashboxExportSubscription]),
|
TypeOrmModule.forFeature([Team, CashboxExportSubscription]),
|
||||||
TeamsModule,
|
TeamsModule,
|
||||||
MailModule,
|
MailModule,
|
||||||
|
LoggingModule,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class CashboxExportModule {}
|
export class CashboxExportModule {}
|
||||||
|
|||||||
Reference in New Issue
Block a user