We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55cfbae commit bbedb13Copy full SHA for bbedb13
apps/OpenSignServer/cloud/customRoute/v1/apiV1.js
@@ -70,7 +70,10 @@ app.delete('/document/:document_id', deleteDocument);
70
app.get('/documentlist/:doctype', getDocumentList);
71
72
// create Template
73
-app.post('/createtemplate', upload.array('file', 1), createTemplate);
+app.post('/createtemplate', createTemplate);
74
+
75
+// create Template with binary
76
+app.post('/createtemplatewithbinary', upload.array('file', 1), createTemplate);
77
78
// get template on the basis of id
79
app.get('/template/:template_id', getTemplate);
0 commit comments