Fix(backend): アカウント削除のモデレーションログが動作していないのを修正 (#14996) (#14997)

* アカウント削除のモデレーションログが動作していないのを修正

* update CHANGELOG
This commit is contained in:
zawa-ch. 2024-11-19 21:12:40 +09:00 committed by GitHub
parent 6c5d3113c6
commit 763c708253
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View file

@ -46,7 +46,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
throw new Error('cannot delete a root account');
}
await this.deleteAccoountService.deleteAccount(user);
await this.deleteAccoountService.deleteAccount(user, me);
});
}
}