Files
OpenSign/apps/OpenSign/src/json/FormJson.js
T
2026-05-15 15:44:29 +00:00

31 lines
653 B
JavaScript

import { documentCls, templateCls } from "../constant/const";
export const formJson = {
//json form for signYourself
sHAnZphf69: {
title: "Sign Yourself",
redirectRoute: "signaturePdf",
msgVar: "Document",
Cls: documentCls
},
//json form for request signatures
"8mZzFxbG1z": {
title: "Request Signatures",
msgVar: "Document",
redirectRoute: "placeHolderSign",
Cls: documentCls,
signers: true,
bcc: true,
cc: true
},
//json form for template
template: {
title: "New Template",
redirectRoute: "template",
msgVar: "Template",
Cls: templateCls,
bcc: true,
cc: true
}
};