tango-app-api-trax 3.7.43 → 3.7.44
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 +1 -1
- package/src/controllers/teaxFlag.controller.js +2 -0
- package/src/hbs/login-otp.hbs +943 -943
package/package.json
CHANGED
|
@@ -553,6 +553,7 @@ export const flagCardsV1 = async ( req, res ) => {
|
|
|
553
553
|
[
|
|
554
554
|
{ store_id: { $in: storeId } },
|
|
555
555
|
{ store_id: { $eq: '' }, userEmail: { $in: requestData.userEmailes } },
|
|
556
|
+
{ aiStoreList: { $in: storeId } },
|
|
556
557
|
] :
|
|
557
558
|
[
|
|
558
559
|
{ store_id: { $in: storeId } },
|
|
@@ -578,6 +579,7 @@ export const flagCardsV1 = async ( req, res ) => {
|
|
|
578
579
|
];
|
|
579
580
|
|
|
580
581
|
const getOverallChecklistData = await processedchecklistService.aggregate( findQuery );
|
|
582
|
+
console.log( '🚀 ~ flagCardsV1 ~ getOverallChecklistData:', getOverallChecklistData );
|
|
581
583
|
|
|
582
584
|
if ( !getOverallChecklistData.length ) {
|
|
583
585
|
const resVal = {
|