From 4c4b1fe135e461e270b3f9b5ca8df773c838de03 Mon Sep 17 00:00:00 2001 From: GotPPay Date: Wed, 18 Oct 2017 20:19:53 +0200 Subject: [PATCH] ... --- backend/.env | 2 +- backend/app.js | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/backend/.env b/backend/.env index e8aa2f7c..689f0626 100644 --- a/backend/.env +++ b/backend/.env @@ -1,2 +1,2 @@ PEOPLE_DB=https://docs.google.com/spreadsheets/d/1s4Ytz7mf-YpszVTMTTrYd5iG_dsTGjrCpDQbpIx7zkU/edit#gid=0 -PAIRS_LIST=https://docs.google.com/spreadsheets/d/1JXtDjajJLZb_iXvDYfBEVYdCfehF_URHeeO7_hBXLrI/edit#gid=0 +PAIRS_LIST=https://docs.google.com/spreadsheets/d/1gPuRhTry3YoJ_ibI2BfL1ue2_YLlhtW56OP39ADJY_4/edit#gid=0 diff --git a/backend/app.js b/backend/app.js index ce8a5c44..76439f06 100644 --- a/backend/app.js +++ b/backend/app.js @@ -171,8 +171,6 @@ function MakePairs(callback){ pairs.filter((pair)=>{ if ((pair.name1==names[i] && pair.name2==names[j])||(pair.name1==names[j] && pair.name2==names[i])){ - console.log("Par pronaden !"); - console.log(names[i] + " i " + names[j]); found=true; return; } @@ -181,7 +179,6 @@ function MakePairs(callback){ if (!found){ usedNames.filter((name)=>{ if (names[i] === name || names[j] === name){ - console.log("Ime vec koristeno"); found=true; return; }