user.recent_replies = recent_replies.map(function (topic) {
                    topic.author = structureHelper.user(topic.author);
                    topic = _.pick(topic, ['id', 'author', 'title', 'last_reply_at']);
                    return topic;
                });