Skip to content

Commit

Permalink
updateAccountMoveLogs から insertAccountMoveLog に
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea committed Sep 16, 2024
1 parent 6a6220d commit ede75c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/core/AccountMoveService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class AccountMoveService {
this.copyMutings(src, dst),
this.updateLists(src, dst),
this.mergeModerationNote(src, dst),
this.updateAccountMoveLogs(src, dst),
this.insertAccountMoveLog(src, dst),
]);
} catch {
/* skip if any error happens */
Expand Down Expand Up @@ -284,7 +284,7 @@ export class AccountMoveService {
}

@bindThis
private async updateAccountMoveLogs(src: ThinUser, dst: MiUser): Promise<void> {
private async insertAccountMoveLog(src: ThinUser, dst: MiUser): Promise<void> {
await this.userAccountMoveLogRepository.insert({
id: this.idService.gen(),
movedToId: dst.id,
Expand Down

0 comments on commit ede75c8

Please sign in to comment.