feat(chat-character): 추천 캐릭터 개수 20 -> 30개로 변경

This commit is contained in:
2025-11-17 15:50:40 +09:00
parent 806fcfe7db
commit 146f733f5d

View File

@@ -75,11 +75,11 @@ class ChatCharacterController(
).content
// 추천 캐릭터 조회
// 최근 대화한 캐릭터를 제외한 랜덤 20개 조회
// 최근 대화한 캐릭터를 제외한 랜덤 30개 조회
// Controller에서는 호출만
// 세부로직은 추후에 변경될 수 있으므로 Service에 별도로 생성
val excludeIds = recentCharacters.map { it.characterId }
val recommendCharacters = service.getRecommendCharacters(excludeIds, 20)
val recommendCharacters = service.getRecommendCharacters(excludeIds, 30)
// 큐레이션 섹션 (활성화된 큐레이션 + 캐릭터)
val curationSections = curationQueryService.getActiveCurationsWithCharacters()