tango-app-api-trax 3.7.2-multireff-10 → 3.7.2-multireff-12
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
|
@@ -313,7 +313,7 @@ export async function startTask( req, res ) {
|
|
|
313
313
|
$and: [
|
|
314
314
|
{ _id: new ObjectId( requestData.processedcheckListId ) },
|
|
315
315
|
{ userId: user._id },
|
|
316
|
-
{ date_string: requestData.date },
|
|
316
|
+
// { date_string: requestData.date },
|
|
317
317
|
],
|
|
318
318
|
},
|
|
319
319
|
},
|
|
@@ -403,7 +403,7 @@ export async function startTask( req, res ) {
|
|
|
403
403
|
const updateQuery = {
|
|
404
404
|
_id: new ObjectId( requestData.processedcheckListId ),
|
|
405
405
|
userId: user._id,
|
|
406
|
-
date_string: requestData.date,
|
|
406
|
+
// date_string: requestData.date,
|
|
407
407
|
};
|
|
408
408
|
|
|
409
409
|
const updateTaskResult = await processedTask.updateOne( updateQuery, updateData );
|
|
@@ -1992,7 +1992,7 @@ export async function submitTask( req, res ) {
|
|
|
1992
1992
|
$match: {
|
|
1993
1993
|
_id: new ObjectId( processedcheckListId ),
|
|
1994
1994
|
userId: user._id,
|
|
1995
|
-
date_string: date,
|
|
1995
|
+
// date_string: date,
|
|
1996
1996
|
},
|
|
1997
1997
|
},
|
|
1998
1998
|
];
|
|
@@ -2204,7 +2204,7 @@ export async function submiteyeTestTask( req, res ) {
|
|
|
2204
2204
|
$match: {
|
|
2205
2205
|
_id: new ObjectId( processedcheckListId ),
|
|
2206
2206
|
userId: user._id,
|
|
2207
|
-
date_string: date,
|
|
2207
|
+
// date_string: date,
|
|
2208
2208
|
},
|
|
2209
2209
|
},
|
|
2210
2210
|
];
|