feat(news): 뉴스 학습 배지 시스템 구현 (#473)#494
Merged
Merged
Conversation
|
Jira: MESP-265 |
- 14개 뉴스 관련 배지 추가 (읽기, 퀴즈, 단어수집, 연속학습, 마스터) - UserStats에 뉴스 통계 필드 추가 - 6개 뉴스 배지 Strategy 클래스 생성 - 뉴스 읽기/퀴즈/단어수집 시 통계 업데이트 및 배지 체크 연동
00b32ef to
f82e649
Compare
hye-inA
pushed a commit
that referenced
this pull request
Jan 23, 2026
…-badge-system feat(news): 뉴스 학습 배지 시스템 구현 (#473)
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
Changes
새 파일
NewsReadStrategy.java- 뉴스 읽기 배지 전략NewsQuizStrategy.java- 뉴스 퀴즈 배지 전략NewsQuizPerfectStrategy.java- 퀴즈 만점 배지 전략NewsWordStrategy.java- 단어 수집 배지 전략NewsStreakStrategy.java- 연속 읽기 배지 전략NewsMasterStrategy.java- 종합 마스터 배지 전략수정 파일
BadgeType.java- 14개 뉴스 배지 enum 추가UserStats.java- 뉴스 통계 필드 추가BadgeConditionStrategyFactory.java- 뉴스 전략 등록UserStatsRepository.java- 뉴스 통계 업데이트 메서드 추가NewsLearningService.java- 읽기 완료 시 배지 체크NewsQuizService.java- 퀴즈 완료 시 배지 체크NewsWordService.java- 단어 수집 시 배지 체크NewsHandler.java- 응답에 배지 포함Test plan