Skip to content

Commit

Permalink
[refactor/#128] request body명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
juuuuone committed Feb 5, 2025
1 parent a7a074d commit feff19f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class MemberRestController {
@PatchMapping(value = "users/profile", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public BaseResponse<MemberDTO.ProfileRP> updateProfile(
@Parameter(name = "user", hidden = true) @AuthUser Member member,
@RequestPart("data") @Valid MemberDTO.ProfileRQ request,
@RequestPart("profileRequest") @Valid MemberDTO.ProfileRQ request,
@RequestPart(value = "profileImage", required = false) MultipartFile profileImage,
@RequestPart(value = "profileBackImage", required = false) MultipartFile profileBackImage) {

Expand Down

0 comments on commit feff19f

Please sign in to comment.