Skip to content

Commit

Permalink
프로필 이미지 등록 image url로 리턴값 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
SeWooooong committed Aug 21, 2024
1 parent 7fdad70 commit 7bcfd4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public String uploadFile(Member member, MultipartFile multipartFile) throws IOEx
String newProfileUrl = s3Service.uploadImage(multipartFile);
member.changeProfileImageUrl(newProfileUrl);
save(member);
return "프로필 사진 수정 완료";
return member.getProfileImageUrl();
}
return null;
}
Expand Down

0 comments on commit 7bcfd4e

Please sign in to comment.