soundbirder/controllers/index.js

16 lines
271 B
JavaScript
Raw Normal View History

2022-08-17 14:27:37 +02:00
function getIndex(req, res) {
res.render('index', {
title: 'SoundBirder',
csrf_token: req.csrfToken()
});
2022-08-17 14:27:37 +02:00
}
function getAbout(req, res) {
res.render('about', { title: 'About SoundBirder' });
}
2022-08-17 14:27:37 +02:00
module.exports = {
getIndex,
getAbout
2022-08-17 14:27:37 +02:00
}