send signing request

This commit is contained in:
Timur Ercan
2023-02-07 12:02:57 +01:00
parent b095733a9d
commit 554c641201
3 changed files with 16 additions and 2 deletions

View File

@ -39,6 +39,7 @@ async function postHandler(req: NextApiRequest, res: NextApiResponse) {
res.status(200).end();
})
.catch((err) => {
console.log(err);
return res.status(502).end("Coud not send request for signing.");
});
});