Skip to content

Commit

Permalink
docs: #54 유저 프로필 사진 변경 API 설명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dgh06175 committed Sep 10, 2024
1 parent c8bdc5d commit 520b49c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public BaseResponse<MemberResponse.MemberId> updateStreamType(
return BaseResponse.onSuccess(memberService.updateStreamType(member, streamType));
}

@Operation(summary = "유저 프로필 사진 변경", description = "업로드한 이미지의 URL로 프로필 사진을 변경합니다. \"유저 프로필 사진 업로드\" API 에서 받은 이미지 URL을 `avatar` 객체에 담아 요청 본문으로 전달하세요.")
@Operation(summary = "유저 프로필 사진 변경", description = "업로드한 이미지의 URL로 프로필 사진을 변경합니다. \"사진 업로드\" API 에서 받은 이미지 URL을 `avatar` 객체에 담아 요청 본문으로 전달하세요.")
@PatchMapping("/profile/avatar")
public BaseResponse<MemberResponse.MemberId> updateAvatarUrl(@AuthMember Member member,
@RequestBody MemberRequest.Avatar avatar) {
Expand Down

0 comments on commit 520b49c

Please sign in to comment.