summaryrefslogtreecommitdiff
path: root/routes/index.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2013-01-28 12:08:37 -0500
committerJules Laplace <jules@okfoc.us>2013-01-28 12:08:37 -0500
commit189be0c59edc357cf17be592e35aa258ab3f3643 (patch)
tree04a5d6e5a829301769f1f5d6b53ee0a310b9c68f /routes/index.js
parent04a10a9654e4762c78aef83e552993bedd845988 (diff)
hover route
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 });
+};