Do not return play/item/buy for budget object on basic GET logs endpoint (CC-15)
parent
15fb7de1e3
commit
42eec2372f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue