Skip to content

Commit

Permalink
[fix] : 마이페이지 dto 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
evergreenn committed Mar 30, 2024
1 parent 859d02d commit 49ea18d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
public record BoomarkLikeResponseDto(

String spotName,
Long spotId,
String review,
LocalDateTime createDate,

Expand All @@ -26,6 +27,8 @@ public static BoomarkLikeResponseDto of(Spot spot, Boolean isBookmark, Boolean i
return BoomarkLikeResponseDto.builder()
.spotName(spot.getSpotName())
.spotImageurl(spot.getImageUrls().get(0))
.createDate(spot.getCreatedDate())
.spotId(spot.getId())
.review(spot.getReview())
.author(spot.getUser().getNickname())
.bookmark(isBookmark)
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ spring:
password : ${redis_password}
servlet:
multipart:
maxFileSize: 10MB
maxRequestSize: 30MB
maxFileSize: 30MB
maxRequestSize: 60MB

decorator:
datasource:
Expand Down

0 comments on commit 49ea18d

Please sign in to comment.