final review

This commit is contained in:
Chukwuleta Tobechi 2026-05-20 15:23:31 +01:00
parent 22672a7047
commit 62103c4275

View File

@ -197,7 +197,6 @@ public class TelemetryService(DBConnectionFactory connectionFactory, ILogger<Tel
""", new { PluginSlug = pluginSlug })).ToList();
return new PluginStats(
TotalInstalls: installStats.TotalInstalls,
ActiveInstalls: installStats.ActiveInstalls,
TotalUninstalls: installStats.TotalUninstalls,
VersionBreakdown: versionBreakdown,
@ -288,7 +287,6 @@ public class TelemetryService(DBConnectionFactory connectionFactory, ILogger<Tel
public record PluginReport(string Slug, string Version);
public record PluginStats(
int TotalInstalls,
int ActiveInstalls,
int TotalUninstalls,
List<VersionStat> VersionBreakdown,