Add mm pick count to PlanetStats

This commit is contained in:
jvyden 2021-11-08 12:59:51 -05:00
commit 2b1cc62e4d
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -31,7 +31,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers
public async Task<IActionResult> PlanetStats()
{
int totalSlotCount = await this.database.Slots.CountAsync();
const int mmPicksCount = 0;
int mmPicksCount = await this.database.Slots.CountAsync(s => s.TeamPick);
return this.Ok
(