Skip to content
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/#559 행사에 여러 개 이미지 등록 기능 구현 #580

Conversation

java-saeng
Copy link
Collaborator

#️⃣연관된 이슈

📝작업 내용

  • 관리자 페이지에서 행사 등록 시 여러 개 이미지 저장하도록 수정
  • 행사 상세 정보 조회 시 저장된 이미지 name 반환하도록 수정

예상 소요 시간 및 실제 소요 시간

9/21 예상
9/20 완료

@java-saeng java-saeng added Backend 백엔드 관련 이슈 기능 추가 새로운 기능 추가 및 기존 기능 변경 High Priority 리뷰 우선순위가 높은 PR labels Sep 20, 2023
@java-saeng java-saeng added this to the 5차 스프린트 milestone Sep 20, 2023
@java-saeng java-saeng self-assigned this Sep 20, 2023
Copy link
Collaborator

@amaran-th amaran-th left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다! 코드를 꼼꼼하게 짜주셔서 크게 수정할만한 점은 보이지 않네요.
approve하겠습니다!

Copy link
Collaborator

@hong-sile hong-sile left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

전체적으로 따로 수정할 부분은 보이지 않는 것 같아요. approve 하겠습니다.

수고하셨어요.

POST

[source]
----
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

요거 맛있네요. 잘 풀어낸 것 같아요.

@@ -183,54 +201,42 @@ void updateEventTest() throws Exception {
event.getInformationUrl(), event.getEventPeriod().getStartDate(),
event.getEventPeriod().getEndDate(),
event.getEventPeriod().getApplyStartDate(), event.getEventPeriod().getApplyEndDate(), tags,
event.getImageUrl(), event.getType(), EventMode.OFFLINE, PaymentType.PAID);
event.getImageUrl(), event.getType(), EventMode.OFFLINE, PaymentType.PAID, null);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

사소한 부분입니다.
여기서 request에서 MultipartFile 부분을 null을 주시고, 실제 response에서는 반환을 하도록 하셨더라고요.

코드 상으론 전혀 문제가 없지만 나중에 문서를 읽어보는 입장에서는 조금 헷갈릴 수도 있을 것 같아요.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다 response 도 null 로 바꿔버렸습니다

.param("startDateTime",
request.getStartDateTime().format(DateTimeFormatter.ofPattern("yyyy:MM:dd:HH:mm:ss")))
.param("endDateTime",
request.getEndDateTime().format(DateTimeFormatter.ofPattern("yyyy:MM:dd:HH:mm:ss")))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

멀티 파트개빡세네요 수고하셨습니다...

//when & then
mockMvc.perform(post("/events")
.param("name", "인프콘 2023")
.param("location", "코엑스")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

훨씬 깔끔해졌군요. 좋아요

Copy link
Collaborator

@hyeonjerry hyeonjerry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다~!


@RequiredArgsConstructor
@Getter
@Setter
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

혹시 이 setter가 어디서 필요한건가요?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

쿼리 스트링으로 객체 받으려면 setter를 써야하는 것으로 알고 있어서 작성해주었습니다!

제가 잘못 알고 있다면 말씀해주세요!

@java-saeng java-saeng merged commit c22595a into backend-main Sep 21, 2023
1 check passed
@amaran-th amaran-th deleted the Feature/#559-행사에_여러_개_이미지_등록_기능_구현 branch September 21, 2023 13:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backend 백엔드 관련 이슈 High Priority 리뷰 우선순위가 높은 PR 기능 추가 새로운 기능 추가 및 기존 기능 변경
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants