Skip to content

Commit

Permalink
feat: add updateMember mock api
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji-soo708 committed Dec 14, 2023
1 parent d128279 commit 095c71b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ public MemberResponse getMember(String memberId) {

@Override
public MemberResponse updateMember(String memberId, UpdateMemberRequest request) {
return null;
//TODO: 프로필 이미지 수정 로직 추가
return new MemberResponse(
memberId,
request.name(),
request.profileImageUrl()
);
}
}

0 comments on commit 095c71b

Please sign in to comment.