Update StatisticsEndpoints.cs

Rolled back my failed attempt to add rooms per platform to the statistics endpoint.
This commit is contained in:
Michael Youngling 2024-06-15 20:27:23 -04:00 committed by GitHub
commit 752b88d4d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,6 @@ public class StatisticsEndpoints : ApiEndpointController
Slots = await StatisticsHelper.SlotCount(this.database, new SlotQueryBuilder()),
Users = await StatisticsHelper.UserCount(this.database),
RecentMatches = await StatisticsHelper.RecentMatches(this.database),
RoomsPerPlatform = await StatisticsHelper.RoomCountPerPlatform(this.database),
TeamPicks = await StatisticsHelper.SlotCount(this.database, new SlotQueryBuilder().AddFilter(new TeamPickFilter())),
}
);