Skip to content

Commit

Permalink
Merge pull request #730 from OpenSignLabs/signPdf
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-opensignlabs authored May 13, 2024
2 parents e15136c + 39c9211 commit b202d78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default async function getFolderList(request, response) {
const apiToken = request.headers['x-api-token'];
const parentFolderId = request.body.parentFolderId;
const parentFolderId = request.query?.parentFolderId || '';
if (!apiToken) {
return response.status(400).json({ error: 'Please Provide API Token' });
}
Expand Down

0 comments on commit b202d78

Please sign in to comment.