summaryrefslogtreecommitdiff
path: root/routes/info.js
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2022-10-26 15:06:40 +0100
committerRafael Marçalo <raroma09@gmail.com>2022-10-26 15:06:40 +0100
commit1d0c0046a434dd3171b3d22818204fcf9daf1413 (patch)
treecc572b36103eecfede0c38613a55dd07c1aa5bb4 /routes/info.js
parent5dba81f9173fa96edb53645a5a2081e9408de69e (diff)
Added search bar to some of the views
Diffstat (limited to 'routes/info.js')
-rw-r--r--routes/info.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/info.js b/routes/info.js
index 820b674..2b0687a 100644
--- a/routes/info.js
+++ b/routes/info.js
@@ -2,7 +2,7 @@
function info(req, res)
{
- res.render('info');
+ res.render('info', {showSearchBar: true});
};
module.exports = info;