homeRoute.js 223 Bytes
Newer Older
1 2 3 4 5 6
'use strict';

module.exports = function(app) {

    app.get('/', function(req, res) {
        res.render('index', {
7 8
            renderErrors: {}, //req.flash('error')
            app: app.config.app
9 10 11
        });
    });
};