2019-05-15 15:27:10 +02:00
|
|
|
const getWelcome = (req,res) => {
|
|
|
|
|
res.render('welcome', { nextStep: '/vrstanekretnine' } );
|
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
|
|
|
|
|
};
|