home_control.js 194 B

12345678910
  1. exports.index = function(req, res) {
  2. if (req.user) {
  3. if (req.user) {
  4. return res.redirect('/:username');
  5. }
  6. }
  7. res.render('pages/index', {
  8. title: 'You Be the Judge'
  9. });
  10. };