From 752b88d4d7aee84e062bd50ea9ffd541d890874e Mon Sep 17 00:00:00 2001 From: Michael Youngling <89745384+m88youngling@users.noreply.github.com> Date: Sat, 15 Jun 2024 20:27:23 -0400 Subject: [PATCH] Update StatisticsEndpoints.cs Rolled back my failed attempt to add rooms per platform to the statistics endpoint. --- ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs b/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs index 08ae07e5..c307334d 100644 --- a/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs +++ b/ProjectLighthouse.Servers.API/Controllers/StatisticsEndpoints.cs @@ -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())), } );