-
Notifications
You must be signed in to change notification settings - Fork 0
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
[feat] 동행 성사 메일 알림 기능을 구현한다. #160
Conversation
- 이미지가 삭제되지 않는 문제 해결 Related to : #149
Related to : #149
…UDDY-back into feature/8-community
- 비동기 적용 Related to : #159
@@ -14,6 +14,7 @@ public class MyCommentResDto { | |||
private Long id; | |||
private String postType; | |||
private String postTitle; | |||
private Boolean isJoinus; | |||
private LocalDateTime createdDate; | |||
private Boolean isJoinus; | |||
|
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.
이 코드 패치는 MyCommentResDto
클래스에 새로운 필드인 isJoinus
를 추가하는 것으로 보입니다.
이 코드의 주된 문제는 중복된 필드 isJoinus
가 두 번 선언되었다는 점입니다. 이러한 유형의 중복은 충돌을 일으킬 수 있으며 코드의 가독성과 유지 보수성을 저해할 수 있습니다. 따라서 한 번만 선언되도록 수정하는 것이 좋습니다.
또한, 코드에서 사용되는 변수들에 대한 주석이나 설명이 없습니다. 다른 개발자들이 코드를 이해하기 어려울 수 있으므로 명확한 설명을 추가하는 것이 좋습니다.
마지막으로, 코드에서 어디에 사용되는지 확인할 수 없는 id
, postType
, postTitle
, createdDate
변수들이 선언되어 있습니다. 필요한 경우 해당 변수들에 대한 사용처를 추가하거나 제거하는 것이 좋습니다.
이러한 수정 사항을 고려하여 코드를 개선하실 수 있을 것입니다.
import org.springframework.web.bind.annotation.PutMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
import org.springframework.web.bind.annotation.*; | ||
|
||
import com.kuddy.apiserver.meetup.dto.MeetupListResDto; | ||
import com.kuddy.common.meetup.domain.Meetup; |
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.
이 코드 패치는 어떤 리팩토링 작업인가요?
기능 명세
결과
[GET] /api/v1/notifications/mails?chatId={chatId}
동행 성사 메일 알림 기능
성공/실패 여부와 상관없이 200으로 응답(메일전송은 비동기로 처리)
함께 의논할 점