From f453d5f84a555c2444111187bf2567b27249cb25 Mon Sep 17 00:00:00 2001 From: sbriat Date: Wed, 18 Oct 2023 10:29:05 +0200 Subject: [PATCH] complete env file with missing entry --- .../authentication/infrastructure/authentication.repository.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/authentication/infrastructure/authentication.repository.ts b/src/modules/authentication/infrastructure/authentication.repository.ts index f32dc12..87adb0a 100644 --- a/src/modules/authentication/infrastructure/authentication.repository.ts +++ b/src/modules/authentication/infrastructure/authentication.repository.ts @@ -10,6 +10,7 @@ import { AuthenticationRepositoryPort } from '../core/application/ports/authenti import { PrismaService } from './prisma.service'; import { AuthenticationMapper } from '../authentication.mapper'; import { AUTH_MESSAGE_PUBLISHER } from '../authentication.di-tokens'; +import { SERVICE_NAME } from '@src/app.constants'; type AuthenticationBaseModel = { uuid: string; @@ -59,7 +60,7 @@ export class AuthenticationRepository eventEmitter, new LoggerBase({ logger: new Logger(AuthenticationRepository.name), - domain: 'auth', + domain: SERVICE_NAME, messagePublisher, }), );