From 8690c8242999db3049e5ae11b290128e773f3c1d Mon Sep 17 00:00:00 2001 From: evenegas Date: Wed, 1 Oct 2025 11:33:17 -0600 Subject: [PATCH] qr --- src/qr/qr.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qr/qr.module.ts b/src/qr/qr.module.ts index 9960373..658d954 100644 --- a/src/qr/qr.module.ts +++ b/src/qr/qr.module.ts @@ -8,9 +8,10 @@ import { AuthModule } from '../auth/auth.module'; import { ConfigModule } from '@nestjs/config'; import { Asistencia } from 'src/asistencia/entities/asistencia.entity'; import { Cuestionario } from 'src/cuestionario/entities/cuestionario.entity'; +import { Evento } from 'src/evento/entities/evento.entity'; @Module({ - imports: [TypeOrmModule.forFeature([Qr, Asistencia, Cuestionario]), AuthModule, ConfigModule], + imports: [TypeOrmModule.forFeature([Qr, Asistencia, Cuestionario, Evento]), AuthModule, ConfigModule], controllers: [QrController], providers: [QrService, QrTokenService], exports: [QrTokenService],