mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 01:01:49 +10:00
🗃️ 💄 insert text in custom font, typeSignature
This commit is contained in:
@ -36,14 +36,19 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
|
||||
|
||||
if (!recipients.length) return res.status(200).end("");
|
||||
|
||||
let sentRequests = 0;
|
||||
recipients.forEach(async (recipient) => {
|
||||
await sendSigningRequest(recipient, document, user).catch((err) => {
|
||||
console.log(err);
|
||||
return res.status(502).end("Coud not send request for signing.");
|
||||
});
|
||||
|
||||
sentRequests++;
|
||||
if (sentRequests === recipients.length) {
|
||||
return res.status(200).end();
|
||||
}
|
||||
});
|
||||
|
||||
return res.status(202).end();
|
||||
// todo check if recipient has an account and show them in their inbox or something
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user