mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-05 05:59:30 +01:00
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
'use strict';
|
|
|
|
exports.render = function(req, res) {
|
|
res.render('index', {
|
|
user: req.user ? JSON.stringify(req.user) : 'null'
|
|
});
|
|
};
|