Feat: 추천 커밋 조회, 연결된 커밋 조회, 적용현황 조회, 신뢰도 조회, 커밋 연결 API 구현#19
Merged
Conversation
Contributor
|
👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 작업 내용
주요 변경사항
EffectRatio) 를 삭제하고, 결정사항 기반 신뢰도 조회 API를 구현했숩니다.상세 내용
적용사항 기준 커밋 연결 구조 정리
CommitConnection은 결정사항 기준 연결되어있었는데, 적용사항별 커밋 연결이 필요해Application기준 연결 구조로 변경추천 커밋 조회 API 구현
GET /api/applications/{applicationId}/recommended-commits구현DecisionCommits에 추천 이유(reason)를 추가decision_id + commit_idunique 제약조건 추가ApplicationCommits에서 조회한 추천 원본과Commit정보를 조합해 응답하도록 구현application_id는 제거연결된 커밋 조회 API 구현
GET /api/applications/{applicationId}/connected-commits구현GET /api/decisions/{applicationId}/connected-commits는 삭제적용현황 조회 API 구현
GET /api/applications/{applicationId}/status구현커밋 연결 API 구현
POST /api/applications/{applicationId}/commits구현commit_ids배열로 받도록 함결정사항별 신뢰도 조회 API 구현
GET /api/decisions/{decisionId}/reliability구현Decision에reliabilityScore컬럼을 추가✅ 체크리스트
📋 API 명세서
💬 기타 (선택)
EffectRatio는 이제 불필요하여 제거하였습니다,.📚 참고 자료 (선택)