Skip to content

Commit

Permalink
Merge pull request #135 from modern-agile-team/feature/friend
Browse files Browse the repository at this point in the history
Fix(NicoDora) : 친구요청 영구거절 상태 수정
  • Loading branch information
NicoDora authored Nov 15, 2023
2 parents 9d6a98b + f207b68 commit 7c366aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/friends/repositories/friends.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class FriendsRepository {
if (!friend) {
return null;
}
friend.status = Status.REJECT;
friend.status = Status.PERMANENT;
return await this.entityManager.save(Friend, friend);
}

Expand Down

0 comments on commit 7c366aa

Please sign in to comment.