This commit is contained in:
SepehrYahyaee
2026-05-10 14:15:38 +03:30
parent 3fb90cf1c9
commit 186f6c5837
2 changed files with 6 additions and 4 deletions

View File

@@ -1429,6 +1429,7 @@ export class RequestManagementService {
);
await this.smsOrchestrationService.sendInviteLink(
secondPartyPhone,
req.publicId,
url,
);
return {
@@ -1477,7 +1478,7 @@ export class RequestManagementService {
frontendRoute,
requestId,
);
await this.smsOrchestrationService.sendInviteLink(phoneNumber, url);
await this.smsOrchestrationService.sendInviteLink(phoneNumber, req.publicId, url);
return {
requestId: req._id,
@@ -2399,7 +2400,7 @@ export class RequestManagementService {
frontendRoutes,
requestId,
);
await this.smsOrchestrationService.sendInviteLink(phoneNumber, URL);
await this.smsOrchestrationService.sendInviteLink(phoneNumber, request.publicId, URL);
return { url: URL };
}