Changed logic for checkup.For testing.

This commit is contained in:
Naida Vatric
2020-01-24 01:01:10 +01:00
parent b2c102bc1a
commit 40509d2836
6 changed files with 37 additions and 8 deletions

View File

@@ -113,7 +113,7 @@ const notifyRequestsWithDailyOption = async () => {
await notifyMatches(matches, true);
};
const checkUpNotifyAll = async () => {
const checkUpNotify = async () => {
const searchRequestsForCheckUp = await findAllRequestsForCheckUp();
const asyncSendEmailActions = [];
@@ -134,5 +134,5 @@ module.exports = {
notifyForNewRealEstates,
notifyForNewSearchRequest,
notifyRequestsWithDailyOption,
checkUpNotifyAll
checkUpNotify
};