Fixed crawler not reading and comparing all RERequest results

This commit is contained in:
Nedim Uka
2019-07-12 16:13:03 +02:00
parent 4517624fa8
commit 753a09aa36
5 changed files with 46 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
const getRealEstates = (req,res) => {
const title = "Ovo su nekretnine koje smo pronašli za vas"
res.render('realEstates', { nextStep: '/nekretnine', title } );
};
module.exports = {
getRealEstates
};