feat: only show succesful attempts in leaderboard

This commit is contained in:
sBubshait 2025-08-06 13:04:29 +03:00
parent fa3548f5bf
commit 1f92121491

View File

@ -74,6 +74,7 @@ public class PuzzleController {
List<PuzzleAttempt> attempts = puzzleService.getTodaysLeaderboard();
List<LeaderboardEntry> leaderboard = attempts.stream()
.filter(attempt -> attempt.isSolved())
.map(attempt -> new LeaderboardEntry(
attempt.getUser().getDisplayName(),
attempt.getUser().getUsername(),