name beim kopieren

This commit is contained in:
Bastian Wagner
2026-06-09 16:03:20 +02:00
parent 06c5b1768e
commit 16605c961f
18 changed files with 693 additions and 44 deletions

View File

@@ -1,5 +1,6 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AuditModule } from '../audit/audit.module';
import { AuthModule } from '../auth/auth.module';
import { ListsController } from './lists.controller';
import { ListsService } from './lists.service';
@@ -7,7 +8,11 @@ import { UserListEntity } from './user-list.entity';
import { UserListItemEntity } from './user-list-item.entity';
@Module({
imports: [AuthModule, TypeOrmModule.forFeature([UserListEntity, UserListItemEntity])],
imports: [
AuditModule,
AuthModule,
TypeOrmModule.forFeature([UserListEntity, UserListItemEntity]),
],
controllers: [ListsController],
providers: [ListsService],
exports: [ListsService],