From 81bc481efc3283acb6274daf464c5344b36a9c04 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sun, 28 Sep 2014 23:52:19 -0400 Subject: [PATCH] removing page views from the dashboard stats --- src/controllers/admin.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/controllers/admin.js b/src/controllers/admin.js index 3505f4b0ea..eed56b43a0 100644 --- a/src/controllers/admin.js +++ b/src/controllers/admin.js @@ -74,9 +74,6 @@ function getStats(callback) { }, function(next) { getStatsForSet('topics:tid', next); - }, - function(next) { - getStatsForSet('analytics:pageviews', next); } ], function(err, results) { if (err) { @@ -86,7 +83,6 @@ function getStats(callback) { results[1].name = 'Users'; results[2].name = 'Posts'; results[3].name = 'Topics'; - results[4].name = 'Page Views'; callback(null, results); });