tango-app-api-trax 3.5.0-alpha-7 → 3.5.0-alpha-8
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
|
@@ -286,6 +286,7 @@ export async function PCLconfigCreation( req, res ) {
|
|
|
286
286
|
insertdata.scheduleRepeatedType = getCLconfig.scheduleRepeatedType;
|
|
287
287
|
insertdata.allowedMultiSubmit = getCLconfig.allowedMultiSubmit;
|
|
288
288
|
insertdata.rawImageUpload = getCLconfig.rawImageUpload || false;
|
|
289
|
+
insertdata.rawVideoUpload = getCLconfig.rawVideoUpload || false;
|
|
289
290
|
let collectSections = [];
|
|
290
291
|
let sectionQuery = [];
|
|
291
292
|
sectionQuery.push( {
|
|
@@ -562,6 +563,7 @@ export async function PCLconfigCreation( req, res ) {
|
|
|
562
563
|
// element4.isPlano = getCLconfig?.isPlano;
|
|
563
564
|
// }
|
|
564
565
|
element4.rawImageUpload = getCLconfig?.rawImageUpload || false;
|
|
566
|
+
element4.rawVideoUpload = getCLconfig?.rawVideoUpload || false;
|
|
565
567
|
}
|
|
566
568
|
if ( userIdList.length ) {
|
|
567
569
|
allQuestion = allQuestion.filter( ( item ) => typeof item._id == 'undefined' );
|
|
@@ -852,6 +854,7 @@ async function insertData( requestData ) {
|
|
|
852
854
|
insertdata.scheduleRepeatedType = getCLconfig.scheduleRepeatedType;
|
|
853
855
|
insertdata.allowedMultiSubmit = getCLconfig.allowedMultiSubmit;
|
|
854
856
|
insertdata.rawImageUpload = getCLconfig.rawImageUpload || false;
|
|
857
|
+
insertdata.rawVideoUpload = getCLconfig.rawVideoUpload || false;
|
|
855
858
|
let collectSections = [];
|
|
856
859
|
let sectionQuery = [];
|
|
857
860
|
sectionQuery.push( {
|
|
@@ -1128,6 +1131,7 @@ async function insertData( requestData ) {
|
|
|
1128
1131
|
// element4.isPlano = getCLconfig?.isPlano;
|
|
1129
1132
|
// }
|
|
1130
1133
|
element4.rawImageUpload = getCLconfig?.rawImageUpload || false;
|
|
1134
|
+
element4.rawVideoUpload = getCLconfig?.rawVideoUpload || false;
|
|
1131
1135
|
}
|
|
1132
1136
|
if ( userIdList.length ) {
|
|
1133
1137
|
allQuestion = allQuestion.filter( ( item ) => typeof item._id == 'undefined' );
|