summaryrefslogtreecommitdiff
path: root/routes/index.js
blob: b8a94616205c96585b068efd931ccc646e8ad3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * GET home page.
 */

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 });
};