modify notification email subject

This commit is contained in:
Bilal Catic
2019-10-11 23:07:45 +02:00
parent c0cbaf5b73
commit 0a7aaec4c6
3 changed files with 46 additions and 24 deletions

View File

@@ -4,21 +4,8 @@ const {
} = require("../app/services/notificationService");
(async () => {
const realEstate1 = await getRealEstateById(53069); //B.Luka, 149.000 KM, 67m2
const realEstate2 = await getRealEstateById(53180); //B.Luka, 70.000 KM, 24m2
const realEstate1 = await getRealEstateById(83985);
const realEstate2 = await getRealEstateById(83984);
const realEstate3 = await getRealEstateById(53067); //Grbavica, 109.500 KM, 51m2
const realEstate4 = await getRealEstateById(53077); //alipašino, 66.000 KM, 32.58 m2
const realEstate5 = await getRealEstateById(53080); //Tuzla, - KM, 47,1 m2
const realEstate6 = await getRealEstateById(53646); //Tuzla, 73.500 KM, 53m2
notifyForNewRealEstates([
realEstate1,
realEstate2,
realEstate3,
realEstate4,
realEstate5,
realEstate6
]);
notifyForNewRealEstates([realEstate1]);
})();