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();

View File

@@ -714,8 +714,8 @@ api.transferGems = {
throw new NotAuthorized(res.t('badAmountOfGemsToSend'));
}
await receiver.updateBalance(amount, 'gift_receive', sender._id, sender.profile.name);
await sender.updateBalance(-amount, 'gift_send', sender._id, receiver.profile.name);
await receiver.updateBalance(amount, 'gift_receive', sender._id, sender.auth.local.username);
await sender.updateBalance(-amount, 'gift_send', sender._id, receiver.auth.local.username);
// @TODO necessary? Also saved when sending the inbox message
const promises = [receiver.save(), sender.save()];
await Promise.all(promises);