backend-manager 3.2.51 → 3.2.52
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
|
@@ -281,12 +281,12 @@ Module.prototype.sendRateEmail = function (user) {
|
|
|
281
281
|
},
|
|
282
282
|
})
|
|
283
283
|
.then((json) => {
|
|
284
|
-
assistant.log('
|
|
284
|
+
assistant.log('sendRateEmail(): Success', json);
|
|
285
285
|
|
|
286
286
|
return resolve(json);
|
|
287
287
|
})
|
|
288
288
|
.catch((e) => {
|
|
289
|
-
assistant.error('
|
|
289
|
+
assistant.error('sendRateEmail(): Failed', e);
|
|
290
290
|
|
|
291
291
|
return reject(e);
|
|
292
292
|
});
|
|
@@ -448,11 +448,11 @@ Module.prototype.sendWelcomeEmail = function (user) {
|
|
|
448
448
|
},
|
|
449
449
|
})
|
|
450
450
|
.then((json) => {
|
|
451
|
-
assistant.log('
|
|
451
|
+
assistant.log('sendWelcomeEmail(): Success', json)
|
|
452
452
|
return resolve(json);
|
|
453
453
|
})
|
|
454
454
|
.catch((e) => {
|
|
455
|
-
assistant.error('
|
|
455
|
+
assistant.error('sendWelcomeEmail(): Failed', e)
|
|
456
456
|
return reject(e);
|
|
457
457
|
});
|
|
458
458
|
});
|
|
@@ -511,11 +511,11 @@ Module.prototype.sendCheckupEmail = function (user) {
|
|
|
511
511
|
},
|
|
512
512
|
})
|
|
513
513
|
.then((json) => {
|
|
514
|
-
assistant.log('
|
|
514
|
+
assistant.log('sendCheckupEmail(): Success', json)
|
|
515
515
|
return resolve(json);
|
|
516
516
|
})
|
|
517
517
|
.catch((e) => {
|
|
518
|
-
assistant.error('
|
|
518
|
+
assistant.error('sendCheckupEmail(): Failed', e)
|
|
519
519
|
return reject(e);
|
|
520
520
|
});
|
|
521
521
|
});
|
|
@@ -548,11 +548,11 @@ Module.prototype.sendFeedbackEmail = function (user) {
|
|
|
548
548
|
},
|
|
549
549
|
})
|
|
550
550
|
.then((json) => {
|
|
551
|
-
assistant.log('
|
|
551
|
+
assistant.log('sendFeedbackEmail(): Success', json)
|
|
552
552
|
return resolve(json);
|
|
553
553
|
})
|
|
554
554
|
.catch((e) => {
|
|
555
|
-
assistant.error('
|
|
555
|
+
assistant.error('sendFeedbackEmail(): Failed', e)
|
|
556
556
|
return reject(e);
|
|
557
557
|
});
|
|
558
558
|
});
|