mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Commenting out console logging.
This commit is contained in:
parent
4687f27011
commit
d25ef56591
31 changed files with 87 additions and 87 deletions
|
|
@ -51,7 +51,7 @@ Meteor.methods({
|
|||
|
||||
let userInfo = await Meteor.users.findOneAsync({ _id: this.userId });
|
||||
if (!userInfo) {
|
||||
console.log("No matching user info found.")
|
||||
// console.log("No matching user info found.")
|
||||
} else {
|
||||
try {
|
||||
return await TaskItems.insertAsync({
|
||||
|
|
@ -140,23 +140,23 @@ Meteor.methods({
|
|||
let upToDate = "";
|
||||
switch(timeFrame) {
|
||||
case "1-week":
|
||||
console.log("1 Week");
|
||||
// console.log("1 Week");
|
||||
upToDate = 7 * 24 * 60 * 60 * 1000;
|
||||
break;
|
||||
case "2-weeks":
|
||||
console.log("2 Week");
|
||||
// console.log("2 Week");
|
||||
upToDate = 14 * 24 * 60 * 60 * 1000;
|
||||
break;
|
||||
case '1-month':
|
||||
console.log("1 month");
|
||||
// console.log("1 month");
|
||||
upToDate = 30 * 24 * 60 * 60 * 1000;
|
||||
break;
|
||||
case '3-months':
|
||||
console.log("3 months");
|
||||
// console.log("3 months");
|
||||
upToDate = 90 * 24 * 60 * 60 * 1000;
|
||||
break;
|
||||
case 'all':
|
||||
console.log("all");
|
||||
// console.log("all");
|
||||
upToDate = 1 * 24 * 60 * 60 * 1000;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue