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

9 lines
179 B
JavaScript
Raw Normal View History

2019-05-19 19:45:19 +02:00
const getGoAgain = async (req,res) => {
2019-07-11 14:25:38 +02:00
const title = "Želite li pretražiti još jednu nekretninu ?";
res.render('goAgain', {title});
2019-05-19 19:45:19 +02:00
};
module.exports = {
getGoAgain
};