diff --git a/src/main/java/com/first/flash/climbing/gym/application/dto/ClimbingGymCreateResponseDto.java b/src/main/java/com/first/flash/climbing/gym/application/dto/ClimbingGymCreateResponseDto.java index 0b5885d1..db360e4d 100644 --- a/src/main/java/com/first/flash/climbing/gym/application/dto/ClimbingGymCreateResponseDto.java +++ b/src/main/java/com/first/flash/climbing/gym/application/dto/ClimbingGymCreateResponseDto.java @@ -5,10 +5,10 @@ import java.util.List; public record ClimbingGymCreateResponseDto(Long id, String gymName, String thumbnailUrl, - String mapImageUrl, List difficulties) { + String mapImageUrl, String calendarImageUrl, List difficulties) { public static ClimbingGymCreateResponseDto toDto(final ClimbingGym gym) { return new ClimbingGymCreateResponseDto(gym.getId(), gym.getGymName(), - gym.getThumbnailUrl(), gym.getMapImageUrl(), gym.getDifficulties()); + gym.getThumbnailUrl(), gym.getMapImageUrl(), gym.getCalendarImageUrl(), gym.getDifficulties()); } }