-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/#664 행사 dto의 image url을 s3의 데이터로 대체 #676
The head ref may contain hidden characters: "Feature/#664-\uD589\uC0AC_DTO\uC758_imageUrl\uC744_S3\uC758_\uB370\uC774\uD130\uB85C_\uB300\uCCB4"
Feature/#664 행사 dto의 image url을 s3의 데이터로 대체 #676
Conversation
…rse-teams/2023-emmsale into Feature/#664-행사_다단건_조회_시_S3의_이미지를_반환하도록_수정
- EventDetailRequest에서 imageUrl 제거 #664
…github.com/woowacourse-teams/2023-emmsale into Feature/#664-행사_DTO의_imageUrl을_S3의_데이터로_대체
- 행사 진행 상태, 남은 일 수 제거 #664
- 행사 진행 상태, 남은 일 수 제거 #664
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
딱히 수정할 부분이 없어보이네요,,
귀찮은 작업이었을텐데 고생하셨습니다 !
@@ -44,6 +44,7 @@ public class EventDetailResponse { | |||
public static EventDetailResponse from( | |||
final Event event, | |||
final LocalDate today, | |||
final String imageUrl, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
개인적으로 imageUrl이라고 하는 것 보다 thumbnailUrl이라고 하는게 더 명확하게 의미를 전달할 수 있을 것 같아요.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
의견 반영해서 EventDetailResponse, EventResponse의 imageUrl을 thumbnailUrl로 이름 변경했습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다~!
@@ -592,7 +647,7 @@ void addEventWithStartDateTimeAfterBeforeDateTimeTest() { | |||
final EventException exception = assertThrowsExactly(EventException.class, | |||
() -> eventService.addEvent(request, mockMultipartFiles, now)); | |||
|
|||
assertEquals(exception.exceptionType(), START_DATE_TIME_AFTER_END_DATE_TIME); | |||
assertEquals(START_DATE_TIME_AFTER_END_DATE_TIME, exception.exceptionType()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이게 바뀌어 있었군요...
…023-emmsale into Feature/#664-행사_DTO의_imageUrl을_S3의_데이터로_대체
#️⃣연관된 이슈
#664
📝작업 내용
EventDetailResponse(행사 상세 조회)의 imageUrl과 imageUrls를 각각 S3 이미지의 섬네일 이미지, 나머지 이미지가 반환되도록 구현했습니다.
EventResponse(행사 목록 조회)의 imageUrl을 S3이미지의 섬네일 이미지가 반환되도록 구현했습니다.
EventDetailRequest(행사 생성/수정)의 imageUrl 필드를 제거했습니다.
Event의 imageUrl 컬럼을 제거했습니다.
예상 소요 시간 및 실제 소요 시간
9/27
9/28
💬리뷰 요구사항(선택)
리뷰 범위1, 리뷰 범위2입니다!
아래는 요구사항은 아니고 메모입니다.
*제리의 #657 PR 내역을 pull 받고 작업했기 때문에 제리의 PR이 머지된 후 해당 PR을 머지해야 합니다.