10 lines
438 B
JavaScript
10 lines
438 B
JavaScript
module.exports = function (app) {
|
|
app.server.get('/give', (req, res) => {
|
|
const resourcePath = (req.url.substr(-1) === '/' ? '../' : './');
|
|
let body = app.templater.fill('./templates/pages/uploadForm.html', { resourcePath });
|
|
body = app.replaceBodyWithTooManyBooksWarning(body);
|
|
|
|
const html = app.templater.fill('./templates/htmlContainer.html', { title: 'Give a Book', resourcePath, body });
|
|
res.send(html);
|
|
});
|
|
} |