9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
const getGoAgain = async (req,res) => {
|
|
const title = "Želite li pretražiti još jednu nekretninu ?";
|
|
res.render('goAgain', {title});
|
|
};
|
|
|
|
module.exports = {
|
|
getGoAgain
|
|
};
|