diff --git a/ProjectLighthouse/Controllers/StatisticsController.cs b/ProjectLighthouse/Controllers/StatisticsController.cs index e27e52ea..9deb12c4 100644 --- a/ProjectLighthouse/Controllers/StatisticsController.cs +++ b/ProjectLighthouse/Controllers/StatisticsController.cs @@ -39,5 +39,8 @@ namespace LBPUnion.ProjectLighthouse.Controllers ("planetStats", LbpSerializer.StringElement("totalSlotCount", totalSlotCount) + LbpSerializer.StringElement("mmPicksCount", mmPicksCount)) ); } + + [HttpGet("planetStats/totalLevelCount")] + public async Task TotalLevelCount() => this.Ok((await this.database.Slots.CountAsync()).ToString()); } } \ No newline at end of file