-
Notifications
You must be signed in to change notification settings - Fork 1
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
[DDING-000] 지원자 조회 API 수정 #248
Conversation
이전 pr에서 생성자를 빌더로 변경하다가 누락된 pagingInfo 부분 추가하였습니다.
Walkthrough이번 PR은 FormApplicationResponse와 FormApplicationQuery에 새로운 boolean 필드인 hasInterview를 추가하고, 해당 정보를 전달할 수 있도록 빌더 및 메서드를 수정합니다. 또한, MyFormApplicationPageResponse의 from 메서드에 pagingInfo 할당을 추가하며, FacadeCentralFormApplicationServiceImpl의 getFormApplication 메서드에서 formService를 호출하여 Form 객체를 조회한 후 결과에 포함시키는 로직을 도입합니다. Changes
Sequence Diagram(s)sequenceDiagram
participant C as Controller
participant S as Facade Service
participant F as FormService
participant Q as FormApplicationQuery Builder
C->>S: getFormApplication(formId, applicationId, user)
S->>F: getById(formId)
F-->>S: Form 객체 반환
S->>Q: FormApplicationQuery.of(Form, formApplication, formAnswers)
Q-->>S: Query 객체 생성
S-->>C: Query 객체 반환
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (4)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (6)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
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.
확인하였습니다
🚀 작업 내용
FE 요구사항을 반영하고자 지원자 상세 조회 응답에 hasInterview를 추가했습니다.
이전 pr에서 생성자를 빌더로 바꾸면서 누락시킨 pagingInfo를 MyFormApplicationPageResponse에 추가했습니다.
🤔 고민했던 내용
💬 리뷰 중점사항
Summary by CodeRabbit