summaryrefslogtreecommitdiff
path: root/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.js')
-rw-r--r--routes/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/routes/index.js b/routes/index.js
index ac696e9..b8a9461 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -6,3 +6,7 @@
exports.index = function(req, res){
res.render('index', { title: 'Wait Site', currentUser: req.user });
};
+
+exports.hover = function(req, res){
+ res.render('hover', { title: 'Wait Site', currentUser: req.user });
+};