Conversation
- 회고 반응 생성/삭제/조회 API 구현 - 사용 가능한 전체 반응 조회 및 최근 사용한 N개 unique 반응 조회 API 구현 - 하나의 답변에 하나의 반응만 허용, 본인 반응만 삭제 가능 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- POST /api/auth/create-token 엔드포인트 구현 - memberId를 전달하면 100년 유효한 액세스 토큰 발급 - 인증 불필요 (SecurityConfig에 permitAll 이미 설정됨) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- 회고 반응 생성 시 answerId가 필요하나 기존 응답에 누락되어 있어 추가 - PersonAndAnswerGetResponse, QuestionAndAnswerGetResponse에 answerId 필드 추가 - Answers 값 객체에 getAnswerIdToQuestion 메서드 추가 - 반응 API 문서 추가 (docs/reaction-api.md) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- CreateTokenController를 AuthController에서 분리 - @Profile("!prod") 적용으로 prod 프로파일에서 빈 미등록 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- profileImageUrl은 nullable 필드인데 stream map 후 findAny()시 Optional.of(null) 호출로 NPE 발생 - findAny()로 Member를 먼저 찾은 뒤 Optional.map()으로 필드 추출하도록 변경 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- ActionItem에 type 필드 추가(TEAM/PERSONAL)로 팀/개인 실행목표 구분 - 개인 실행목표 CRUD API 추가 (리더 권한 불필요, 본인 소유 검증) - 팀·개인 실행목표 응답에 createdAt 필드 포함 - DB 마이그레이션: ALTER TABLE action_item ADD COLUMN type VARCHAR(20) NOT NULL DEFAULT 'TEAM' Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- GET /api/action-item/personal/space/{spaceId} (회고별 전체 조회)
- GET /api/action-item/personal/space/{spaceId}/recent (최근 회고 조회)
- GET /api/action-item/personal/member (전체 스페이스 조회)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
dev -> prd