feat: daily challenge and streak system#177
Merged
Mkalbani merged 2 commits intoMindFlowInteractive:mainfrom Feb 22, 2026
Merged
feat: daily challenge and streak system#177Mkalbani merged 2 commits intoMindFlowInteractive:mainfrom
Mkalbani merged 2 commits intoMindFlowInteractive:mainfrom
Conversation
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.
Description
Closes #148
This PR implements the requested Daily Challenge and Streak Tracking System for the backend API. It establishes an automated
@nestjs/schedulecron job that rotates the active puzzle daily while incorporating comprehensive streak increments, grace period allowances, and dynamic bonus point rewarding systems.Features Added
currentStreakresulting in increasing point multiplier rewards (e.g.+5%extra points per consecutive day, capping at50%total bonus limit).streakRecoveryGracePeriodEnd.GET /daily-challenges/today- Retrieve the active daily puzzle and completion status.POST /daily-challenges/:id/complete- Submits scores and returns active streaks + bonus points awarded.GET /daily-challenges/history- Fetches the last 30 puzzle completions.Testing
Comprehensive unit testing functionality built within
Jest:should create a new streak on first completionshould increment streak when completed on consecutive daysshould reset streak when a day is missed without a grace periodshould maintain streak when a day is missed but within grace periodSelf-Review Checklist
daily-challenges.