tango-app-api-trax 3.2.1-hotfix-4 → 3.2.1-hotfix-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -291,6 +291,7 @@ async function insertData( requestData ) {
|
|
|
291
291
|
insertdata.locationCount = getCLconfig.locationCount;
|
|
292
292
|
insertdata.scheduleRepeatedType = getCLconfig.scheduleRepeatedType;
|
|
293
293
|
insertdata.allowedMultiSubmit = getCLconfig.allowedMultiSubmit;
|
|
294
|
+
insertdata.rawImageUpload = getCLconfig.rawImageUpload || false;
|
|
294
295
|
let collectSections = [];
|
|
295
296
|
let sectionQuery = [];
|
|
296
297
|
sectionQuery.push( {
|
|
@@ -416,6 +417,7 @@ async function insertData( requestData ) {
|
|
|
416
417
|
element4.scheduleRepeatedType = getCLconfig.scheduleRepeatedType;
|
|
417
418
|
element4.approvalEnable = getCLconfig.approver.length ? true : false;
|
|
418
419
|
element4.remainder = getCLconfig?.remainder || [];
|
|
420
|
+
element4.rawImageUpload = getCLconfig?.rawImageUpload || false;
|
|
419
421
|
}
|
|
420
422
|
if ( userIdList.length ) {
|
|
421
423
|
allQuestion = allQuestion.filter( ( item ) => typeof item._id == 'undefined' );
|