mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-18 21:32:23 +01:00
Express 4 Support New naming convention Glob patterns CSS Linting Uglify CSS Min Environmental Asset Management DI Menu System
10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
exports.index = function(req, res) {
|
|
res.render('index.html', {
|
|
user: req.user || null
|
|
});
|
|
}; |