-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[COZY-441] fix: 멤버 스탯 없는 사용자에 대한 찜 수정 (#212)
* [COZY-441] fix: 멤버 스탯이 없는 사용자가 찜한 방 조회 count를 null을 반환하도록 수정한다 * [COZY-441] fix: 멤버 스탯이 없는 사용자가 다른 사용자를 찜할 수 있도록 수정한다 * [COZY-441] fix: 멤버 스탯이 없는 사용자가 찜한 사용자 목록을 조회 시 equality, color를 null로 반환하는 로직을 추가한다
- Loading branch information
Showing
4 changed files
with
72 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
@Builder | ||
public record PreferenceMatchCountDTO( | ||
String preferenceName, | ||
int count | ||
Integer count | ||
) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters