From 78005d6124cc029344ff1d039211b4e61bab3b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 22 Jun 2017 18:12:35 -0400 Subject: [PATCH] show old groups first --- src/controllers/admin/groups.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/admin/groups.js b/src/controllers/admin/groups.js index 5e7dd1e78f..b15f7197d1 100644 --- a/src/controllers/admin/groups.js +++ b/src/controllers/admin/groups.js @@ -16,7 +16,7 @@ groupsController.list = function (req, res, next) { async.waterfall([ function (next) { - db.getSortedSetRevRange('groups:createtime', 0, -1, next); + db.getSortedSetRange('groups:createtime', 0, -1, next); }, function (groupNames, next) { groupNames = groupNames.filter(function (name) {