fix: 홈 최근 제안 받은 행동에 회고 요약 대신 다음 행동 제안 요약구 노출#280
Merged
Conversation
홈 "최근 제안 받은 행동" 카드가 회고 요약(summary)을 노출하고 있어 다음 행동 제안 요약구(nextActionTitle)가 보이도록 수정. 회고 목록/프로젝트별/태그별 목록은 회고 요약을 그대로 보여줘야 하므로 공유 DTO(RetrospectiveListItemV2Response)를 건드리지 않고 홈 전용 RecentRetrospectiveV2Response를 신설해 분리.
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.
배경
홈 "최근 제안 받은 행동" 카드가 회고 요약(summary) 을 노출하고 있었음. 섹션 의도(제안 받은 피드백을 업무에 적용)에 맞게 다음 행동 제안 요약구(nextActionTitle) 가 보여야 함.
변경
RecentRetrospectiveV2Response신설 —nextAction = summary.nextActionTitle매핑HomeV2Response.recentRetrospectives타입을 새 DTO로 교체/api/v2/home매핑을 새 DTO로 교체summary→nextAction갱신분리 이유
공유 DTO
RetrospectiveListItemV2Response는 회고 목록/프로젝트별/태그별 목록에서도 쓰여 회고 요약을 그대로 노출해야 하므로, 이 DTO는 건드리지 않고 홈 전용 DTO를 새로 만들어 영향 범위를 홈으로 한정.검증
HomeApiTest통과 (REST DocsnextAction검증)🤖 Generated with Claude Code