feat(history): show user account history on manage page

This commit is contained in:
OldHawk
2018-05-29 18:05:10 +08:00
parent 330f0c5406
commit 37cd2887fe
14 changed files with 151 additions and 44 deletions

View File

@@ -19,7 +19,7 @@ exports.userByID = function (req, res, next, id) {
User.findOne({
_id: id
}, '-remarks')
}, '-history -remarks')
.populate('invited_by', 'username displayName profileImageURL isVip score uploaded downloaded')
.populate('makers', 'name')
.exec(function (err, user) {