Do not return play/item/buy for budget object on basic GET logs endpoint (CC-15)

pull/54/head
HardiReady 2019-02-17 13:13:44 +01:00
parent 15fb7de1e3
commit 42eec2372f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ logsRouter.route('/:warId')
const sort = {sort: {time: 1}};
const pointsObjects = LogPointsModel.find(filter, {}, sort);
const budgetObjects = LogBudgetModel.find(filter, {}, sort);
const budgetObjects = LogBudgetModel.find(filter, {player:0, item:0, buy:0}, sort);
const respawnObjects = LogRespawnModel.find(filter, {}, sort);
const reviveObjects = LogReviveModel.find(filter, {}, sort);
const killObjects = LogKillModel.find(filter, {}, sort);