diff options
-rw-r--r-- | controllers/system.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/controllers/system.js b/controllers/system.js index 7b0a701..adddcba 100644 --- a/controllers/system.js +++ b/controllers/system.js @@ -77,7 +77,6 @@ exports.contact = function(req, res) { exports.dashboard = function(req, res) { - console.log('/dashboard - ' + req.user._id); /* Access.find({ user: req.user._id }, function(err, accesses) { @@ -96,8 +95,6 @@ exports.dashboard = function(req, res) { if (err) return res.status(500).render('error', { title: '500', text: 'En serverfeil oppstod', error: err.stack }); Project.populate(projects, { path: 'project.user', model: User }, function(err, projects) { - console.log('accesses: ' + projects); - res.render('dashboard', { title: 'Dashboard', loggedin: true, |