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

9 lines
159 B
JavaScript
Raw Normal View History

2019-05-15 15:27:10 +02:00
const getWelcome = (req,res) => {
2019-07-29 14:39:31 +02:00
const title = ""
2019-07-11 14:25:38 +02:00
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
};