mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-06-15 20:01:51 +02: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'
|
|
});
|
|
};
|