Browse Source

Remove logging from linkOidcToUser method in AuthService

pull/6075/head
Germán Martín 2 weeks ago
parent
commit
810531b7e0
  1. 5
      apps/api/src/app/auth/auth.service.ts

5
apps/api/src/app/auth/auth.service.ts

@ -102,11 +102,6 @@ export class AuthService {
userId: string,
thirdPartyId: string
): Promise<string> {
Logger.log(
`linkOidcToUser: Starting link process for user ${userId.substring(0, 8)}... with thirdPartyId ${thirdPartyId.substring(0, 8)}...`,
'AuthService'
);
// Check if thirdPartyId is already linked to another user
const [existingUser] = await this.userService.users({
where: { thirdPartyId }

Loading…
Cancel
Save