Skip to content

Commit

Permalink
Merge pull request #735 from OpenSignLabs/signPdf
Browse files Browse the repository at this point in the history
fix: change  parameter name in updatefolder API
  • Loading branch information
nxglabs authored May 14, 2024
2 parents b202d78 + 4e128e5 commit c934f8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default async function updateFolder(request, response) {
const apiToken = request.headers['x-api-token'];
const folderId = request.params.folder_id;
const name = request.body.foldername;
const name = request.body.folderName;
const parentFolderId = request.body.parentFolderId;
if (!apiToken) {
return response.status(400).json({ error: 'Please Provide API Token' });
Expand Down

0 comments on commit c934f8c

Please sign in to comment.