Skip to content

Commit

Permalink
refactor :: 얼굴 이미지를 url을 통해 접근 가능하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
11dlguswns committed Dec 26, 2024
1 parent 3b07e2d commit 2a81ba9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void signUp(SignUpReq request, MultipartFile image) {
.nickname(request.nickName())
.password(passwordEncoder.encode(request.password()))
.phoneNumber(request.phone())
.faceImageUrl(s3ClientService.upload(image, ObjectCannedACL.BUCKET_OWNER_READ)
.faceImageUrl(s3ClientService.upload(image, ObjectCannedACL.PUBLIC_READ)
.orElseThrow(() -> new CustomException(CustomErrorCode.FILE_PROCESSING_ERROR)))
.build()
);
Expand Down

0 comments on commit 2a81ba9

Please sign in to comment.