Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wkzb 398 ๐ŸŽจ ํšŒ์›์ •๋ณด ์กฐํšŒ - ํ•œ์ค„์†Œ๊ฐœ ์ถ”๊ฐ€ #181

Merged
merged 8 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ public static MemberResponseDto.MemberInfoResponseDto toMemberInfoDto(Member mem
return MemberResponseDto.MemberInfoResponseDto.builder()
.profileUrl(member.getProfileUrl())
.email(member.getEmail())
.caption(member.getCaption())
.memberBasicInfoDto(memberBasicInfoDto(member))
.memberDetailInfoDto(memberDetailInfoDto(member))
.nickname(member.getNickname())
.preferCategories(preferCategories)
.build();
}

public static Member toMember(Long memberId) {
return staticMemberRepository.findById(memberId).orElseThrow(() -> new MemberException(CommonStatus.MEMBER_NOT_FOUND));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public static class MemberDetailInfoDto{
public static class MemberInfoResponseDto {
private String profileUrl;
private String email;
private String caption;
private MemberBasicInfoDto memberBasicInfoDto;
private MemberDetailInfoDto memberDetailInfoDto;
private String nickname;
Expand Down
Loading