Skip to content

Commit

Permalink
chore: 모집자 프로필 수정 API form-data param 수정 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
hojeong2747 committed May 15, 2024
1 parent acba390 commit 2458b1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public ResponseEntity<IntermediaryGetHomeResponse> getIntermediaryHome(@Authenti
@PatchMapping("/intermediaries/my/profile")
public ResponseEntity<Void> intermediaryMyProfile(@AuthenticationPrincipal UserDetails loginUser,
@RequestPart @Valid IntermediaryMyProfileRequest request,
@RequestPart(name = "profileImage", required = false) MultipartFile profileImage) {
@RequestPart(name = "files", required = false) MultipartFile profileImage) {
intermediaryService.intermediaryMyProfile(loginUser.getUsername(), request, profileImage);
return ResponseEntity.noContent().build();
}
Expand Down

0 comments on commit 2458b1d

Please sign in to comment.