Transaction Logs - Backend Changes (#14113)

* Transaction Logs - Backend Changes

* filter out bank challenge if is not userSupport
This commit is contained in:
negue
2022-07-13 21:18:59 +02:00
committed by GitHub
parent 3aa7b8b447
commit 0b4059aab0
8 changed files with 41 additions and 11 deletions

View File

@@ -267,7 +267,11 @@ api.updateHero = {
const hero = await User.findById(heroId).exec();
if (!hero) throw new NotFound(res.t('userWithIDNotFound', { userId: heroId }));
if (updateData.balance) hero.balance = updateData.balance;
if (updateData.balance) {
await hero.updateBalance(updateData.balance - hero.balance, 'admin_update_balance', '', 'Given by Habitica staff');
hero.balance = updateData.balance;
}
// give them gems if they got an higher level
// tier = level in this context
@@ -323,7 +327,9 @@ api.updateHero = {
}
}
if (updateData.changeApiToken) hero.apiToken = common.uuid();
if (updateData.changeApiToken) {
hero.apiToken = common.uuid();
}
const savedHero = await hero.save();
const heroJSON = savedHero.toJSON();