Conversation
GET /member/introduction/{personalityType} 유형별 이상형 조회 및
순번별 하트 과금 언락 설계. 오픈 상태는 Redis 24h 롤링 TTL로 관리,
후보는 최신 가입순 3명, 기존 소개 파이프라인/하트 이벤트 재사용.
GET /member/introduction/{personalityType}: 유형별 이상형 최대 3명 조회.
- 하루 1회 오픈, 24h 롤링(Redis)로 고정 목록 유지, 다른 유형 오픈 차단
- 후보 0명이면 오픈 미소진, 최신 가입순 + 기존 소개 필터/제외 재사용
POST /member/introduction/{personalityType}/{targetMemberId}: 상세 언락.
- 해당 유형 첫 언락 무료(이벤트 미발행), 이후 INTRODUCTION 하트 차감, 멱등 처리
datingexam에 PersonalityTypeMemberFinder 포트 추가, IntroductionType/TransactionSubtype
에 PERSONALITY 추가, MemberIntroduction.ofWithoutCharge(무과금 팩토리) 추가.
|
Warning Review limit reached
Next review available in: 21 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (19)
✨ 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 |
Test results829 tests 829 ✅ 17s ⏱️ Results for commit 4d0134f. |
개요
GET /member/introduction/{personalityType}유형별 이상형 조회 + 순번별 하트 과금 언락 API를 추가합니다.주요 동작
GET /member/introduction/{personalityType}: 선택 유형의 이성 최대 3명(최신 가입순) 조회POST /member/introduction/{personalityType}/{targetMemberId}: 상세 언락INTRODUCTION하트 차감(남10/여4)구현
PersonalityTypeMemberFinder포트 + QueryDSL 구현 (기존SoulmateFinder패턴)PersonalityIntroductionQueryService+PersonalityIntroductionRedisRepository(24h 롤링)PersonalityIntroductionUnlockService,MemberIntroduction.ofWithoutCharge(무과금 팩토리)IntroductionType.PERSONALITY,TransactionSubtype.PERSONALITY설계 문서
docs/superpowers/specs/2026-07-20-member-personality-type-introduction-design.md테스트
Closes #454