diff --git a/BeReadyBackend/Specifications/Users/GetUsersByScoreSpec.cs b/BeReadyBackend/Specifications/Users/GetUsersByScoreSpec.cs index 48b4d93..fa6e6c7 100644 --- a/BeReadyBackend/Specifications/Users/GetUsersByScoreSpec.cs +++ b/BeReadyBackend/Specifications/Users/GetUsersByScoreSpec.cs @@ -8,6 +8,7 @@ public class GetUsersByScoreSpec : Specification public GetUsersByScoreSpec() { Query - .OrderByDescending(x => x.Score); + .OrderByDescending(x => x.Score) + .Take(20); } } \ No newline at end of file