Merge branch 'main' into dev

This commit is contained in:
Abdalhamid Alhamad
2025-08-11 15:25:16 +03:00
138 changed files with 176 additions and 4251 deletions

View File

@ -116,7 +116,7 @@ export class JuniorService {
async generateToken(juniorId: string) {
this.logger.log(`Generating token for junior ${juniorId}`);
const token = await this.userTokenService.generateToken(juniorId, UserType.JUNIOR);
const token = await this.userTokenService.generateToken(juniorId);
return this.qrCodeService.generateQrCode(token);
}