-
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 #153] 채팅 요청 자동 거절 알림 생성 #160
Conversation
Test Results 28 files 28 suites 13s ⏱️ Results for commit a06dfe4. ♻️ This comment has been updated with latest results. |
Code Coverage
|
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.
고생 많으셨습니다~
@@ -129,11 +130,33 @@ public RejectChatResponse rejectChat(Long chatInquiryId, Member answerer) { | |||
@Transactional | |||
public void rejectChatAuto() { | |||
List<Long> rejectedInquirerIds = chatInquiryRepository.getAutoRejectedInquirerIds(); | |||
List<RejectChatInquiryDto> rejectChatInquiryDtos = chatInquiryRepository.getAutoRejectedChatInquiry(); |
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.
List<Long> rejectedInquirerIds = rejectChatInquiryDtos.stream()
.map(dto -> dto.inquirer().getId())
.toList()
위 코드를 추가하면 쿼리를 두 번 날릴 필요없이, 하나의 쿼리만 사용할 수 있을 것 같아요!
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.
안그래도 쿼리를 줄일 수 없나 고민했었는데 좋은 방법이네요!
import com.dnd.gongmuin.member.domain.Member; | ||
import com.querydsl.core.annotations.QueryProjection; | ||
|
||
public record RejectChatInquiryDto( |
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.
거절된거니까 Rejected
가 더 적절할 것 같아요
@@ -14,4 +15,6 @@ public interface ChatInquiryQueryRepository { | |||
List<Long> getAutoRejectedInquirerIds(); | |||
|
|||
void updateChatInquiryStatusRejected(); | |||
|
|||
List<RejectChatInquiryDto> getAutoRejectedChatInquiry(); |
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.
리스트 조회 메서드니까 복수형으로 Inquires가 되어야 할 것 같습니다~
관련 이슈
📑 작업 상세 내용
RejectChatInquiryDto
)💫 작업 요약
🔍 중점적으로 리뷰 할 부분
triggerMemberId
가 필요합니다. 답변자가 채팅 요청에 대해 응답하지 않아 자동 거절된거니 답변자를 trigger로 생각했었지만, 자동 거절한 주체는 '시스템'이라고 생각되었습니다. 하지만 시스템은 memberId가 없기에 trigger를 자기 자신으로 넣어놓긴 했습니다.