Merge branch 'staging' into react-tour

This commit is contained in:
Raktima
2024-10-07 11:31:58 +05:30
committed by GitHub
3 changed files with 5 additions and 1 deletions
@@ -275,7 +275,9 @@ const ReportTable = (props) => {
AutomaticReminders: Doc?.AutomaticReminders || false,
RemindOnceInEvery: Doc?.RemindOnceInEvery || 5,
IsEnableOTP: Doc?.IsEnableOTP || false,
IsTourEnabled: Doc?.IsTourEnabled || false
IsTourEnabled: Doc?.IsTourEnabled || false,
IsFileAdapter: Doc?.IsFileAdapter || false
};
try {
const res = await axios.post(
@@ -64,6 +64,7 @@ const createDocumentFromTemplate = async (template, existContact, index) => {
object.set('OriginIp', template?.OriginIp || '');
object.set('IsEnableOTP', template?.IsEnableOTP || false);
object.set('IsTourEnabled', template?.IsTourEnabled || false);
object.set('IsFileAdapter', template?.IsFileAdapter || false);
let signers = template?.Signers || [];
const signerobj = {
__type: 'Pointer',
@@ -202,6 +202,7 @@ export default async function createBatchDocs(request) {
DocSentAt: { __type: 'Date', iso: isoDate },
IsEnableOTP: x?.IsEnableOTP || false,
IsTourEnabled: x?.IsTourEnabled || false,
IsFileAdapter: x?.IsFileAdapter || false,
},
};
});