From d0424c5fd8c6998a43d1cb473a731635a67454a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=9C=D0=B0?= =?UTF-8?q?=D0=BC=D0=B5=D0=B4=D0=BE=D0=B2?= Date: Wed, 10 Jun 2026 18:19:48 +0300 Subject: [PATCH] fix circular dependency: remove unused AuthService from QrAuthService --- src/qr-auth/qr-auth.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qr-auth/qr-auth.service.ts b/src/qr-auth/qr-auth.service.ts index 694e980..8176510 100644 --- a/src/qr-auth/qr-auth.service.ts +++ b/src/qr-auth/qr-auth.service.ts @@ -5,7 +5,6 @@ import { randomUUID } from 'node:crypto'; import * as qrcode from 'qrcode'; import { PinoLogger } from 'nestjs-pino'; import { PrismaService } from '../prisma/prisma.service'; -import { AuthService } from '../auth/auth.service'; import { JwtPayload } from '../auth/strategies/jwt.strategy'; @Injectable() @@ -14,7 +13,6 @@ export class QrAuthService { private readonly prisma: PrismaService, private readonly jwtService: JwtService, private readonly configService: ConfigService, - private readonly authService: AuthService, private readonly logger: PinoLogger, ) { this.logger.setContext(QrAuthService.name);