Fixed overall ranking at 20 persons

This commit is contained in:
2026-04-12 14:29:28 +01:00
parent 5d203bed67
commit 5e0884a420
@@ -8,6 +8,7 @@ public class GetUsersByScoreSpec : Specification<User>
public GetUsersByScoreSpec()
{
Query
.OrderByDescending(x => x.Score);
.OrderByDescending(x => x.Score)
.Take(20);
}
}