Skip to content

Commit 5e55f0d

Browse files
Merge branch 'staging' into react-tour
2 parents 271e79d + f8bd5a6 commit 5e55f0d

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

apps/OpenSign/src/primitives/GetReportDisplay.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,9 @@ const ReportTable = (props) => {
275275
AutomaticReminders: Doc?.AutomaticReminders || false,
276276
RemindOnceInEvery: Doc?.RemindOnceInEvery || 5,
277277
IsEnableOTP: Doc?.IsEnableOTP || false,
278-
IsTourEnabled: Doc?.IsTourEnabled || false
278+
IsTourEnabled: Doc?.IsTourEnabled || false,
279+
IsFileAdapter: Doc?.IsFileAdapter || false
280+
279281
};
280282
try {
281283
const res = await axios.post(

apps/OpenSignServer/cloud/parsefunction/PublicUserLinkContactToDoc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ const createDocumentFromTemplate = async (template, existContact, index) => {
6464
object.set('OriginIp', template?.OriginIp || '');
6565
object.set('IsEnableOTP', template?.IsEnableOTP || false);
6666
object.set('IsTourEnabled', template?.IsTourEnabled || false);
67+
object.set('IsFileAdapter', template?.IsFileAdapter || false);
6768
let signers = template?.Signers || [];
6869
const signerobj = {
6970
__type: 'Pointer',

apps/OpenSignServer/cloud/parsefunction/createBatchDocs.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ export default async function createBatchDocs(request) {
202202
DocSentAt: { __type: 'Date', iso: isoDate },
203203
IsEnableOTP: x?.IsEnableOTP || false,
204204
IsTourEnabled: x?.IsTourEnabled || false,
205+
IsFileAdapter: x?.IsFileAdapter || false,
205206
},
206207
};
207208
});

0 commit comments

Comments
 (0)