This commit is contained in:
Timur Ercan
2023-02-09 18:52:23 +01:00
parent fea0813478
commit 311e460437

View File

@ -37,7 +37,7 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
if (!recipients.length) return res.status(200).end("");
(await recipients).forEach(async (recipient) => {
await sendSigningRequest(recipient, document)
await sendSigningRequest(recipient, document, user)
.then(() => {
return res.status(200).end();
})