Se creo un evento por xlsx

This commit is contained in:
evenegas
2025-10-01 10:14:27 -06:00
parent e4ce66684f
commit 41d36f540a
2 changed files with 3 additions and 3 deletions
@@ -112,7 +112,7 @@ export class CuestionarioRespondidoService {
if (cuestionario && cuestionario.evento) {
try {
// Generar token para el QR
qrToken = this.qrTokenService.generateQrToken(
qrToken = await this.qrTokenService.generateQrToken(
participante.id_participante,
cuestionario.evento.id_evento,
cuestionario.id_cuestionario,
@@ -337,7 +337,7 @@ export class CuestionarioRespondidoService {
}
// Generar token para el QR
qrToken = this.qrTokenService.generateQrToken(
qrToken = await this.qrTokenService.generateQrToken(
participante.id_participante,
cuestionario.evento.id_evento,
cuestionario.id_cuestionario,
+1 -1
View File
@@ -27,7 +27,7 @@ export class QrTokenService {
* @param id_cuestionario ID del cuestionario
* @returns Token JWT codificado
*/
generateQrToken(
async generateQrToken(
id_participante: number,
id_evento: number,
id_cuestionario: number,