diff --git a/apps/user/src/user.service.ts b/apps/user/src/user.service.ts index cf47485db..c8b2feef9 100644 --- a/apps/user/src/user.service.ts +++ b/apps/user/src/user.service.ts @@ -127,7 +127,7 @@ export class UserService { throw new NotFoundException(ResponseMessages.user.error.redirectUrlNotFound); } - sendVerificationMail = await this.sendEmailForVerification(email, verifyCode, redirectUrl, clientId, brandLogoUrl, platformName); + sendVerificationMail = await this.sendEmailForVerification(email, verifyCode, redirectUrl, decryptClientId, brandLogoUrl, platformName); } catch (error) { throw new InternalServerErrorException(ResponseMessages.user.error.emailSend); } diff --git a/libs/common/src/response-messages/index.ts b/libs/common/src/response-messages/index.ts index 9113b4d29..ffd84af63 100644 --- a/libs/common/src/response-messages/index.ts +++ b/libs/common/src/response-messages/index.ts @@ -548,4 +548,5 @@ export const ResponseMessages = { walletRecordNotFound: 'Wallet record not found.' } } -}; \ No newline at end of file +}; + diff --git a/libs/prisma-service/prisma/schema.prisma b/libs/prisma-service/prisma/schema.prisma index 8eec4a21c..360144797 100644 --- a/libs/prisma-service/prisma/schema.prisma +++ b/libs/prisma-service/prisma/schema.prisma @@ -485,7 +485,7 @@ model file_upload { organisation organisation? @relation(fields: [orgId], references: [id]) orgId String? @db.Uuid credential_type String? - templateId String? @db.VarChar + templateId String? @db.VarChar } model file_data {