Skip to content

Commit

Permalink
fix:phone Num null 반환 오류
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmondBreez3 committed Feb 3, 2024
1 parent 3e55bed commit 5b64ff2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public static ScreeningInfoResponse from(Screening screening,boolean isBookmarke
.screeningStartTime(screening.getScreeningStartTime())
.category(screening.getCategory())
.hostEmail(screening.getHostInfo().getHostEmail())
.hostPhoneNumber(screening.getHostInfo().getHostPhoneNumber())
.isPrivate(screening.isPrivate())
.isBookmarked(isBookmarked)
.isReviewed(isReviewed)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public static ScreeningResponse from(Screening screening) {
.screeningStartTime(screening.getScreeningStartTime())
.category(screening.getCategory())
.hostEmail(screening.getHostInfo().getHostEmail())
.hostPhoneNumber(screening.getHostInfo().getHostPhoneNumber())
.isPrivate(screening.isPrivate())
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@AllArgsConstructor
public enum Reason {
NOT_USED("NOT_USED"), // 자주 사용하지 않아서
UNCONFORTABLE("UNCONFORTABLE"), // 이용이 불편하고 장애가 많아서
UNCOMFORTABLE("UNCONFORTABLE"), // 이용이 불편하고 장애가 많아서
USE_OTHER_SERVICE("USE_OTHER_SERVICE"), // 다른 대체 서비스를 이용해서
ETC("ETC");

Expand Down

0 comments on commit 5b64ff2

Please sign in to comment.