From 41bc6ca2c43eb559e04eea44623ebfff32493259 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Thu, 27 Jun 2019 11:17:40 -0400 Subject: [PATCH] feat: add status to post summaries --- src/posts/summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/summary.js b/src/posts/summary.js index 189efb7408..ec746224b8 100644 --- a/src/posts/summary.js +++ b/src/posts/summary.js @@ -43,7 +43,7 @@ module.exports = function (Posts) { }); async.parallel({ users: function (next) { - user.getUsersFields(Object.keys(uids), ['uid', 'username', 'userslug', 'picture'], next); + user.getUsersFields(Object.keys(uids), ['uid', 'username', 'userslug', 'picture', 'status'], next); }, topicsAndCategories: function (next) { getTopicAndCategories(Object.keys(topicKeys), next);