Files
old-web/app/controllers/welcome.js

9 lines
184 B
JavaScript
Raw Normal View History

2019-05-15 15:27:10 +02:00
const getWelcome = (req,res) => {
2019-07-11 14:25:38 +02:00
const title = "Koju nekretninu tražite?"
res.render('welcome', { nextStep: '/vrstanekretnine', title } );
2019-05-16 19:58:48 +02:00
};
2019-05-15 15:27:10 +02:00
2019-05-16 19:58:48 +02:00
module.exports = {
2019-05-15 15:27:10 +02:00
getWelcome
};