chore(analytics): remove dead day-hour heatmap endpoint/service/DTO
CI / backend (pull_request) Successful in 1m36s
CI / frontend (pull_request) Successful in 26s
CI / format (pull_request) Successful in 1m22s
CI / db-tests (pull_request) Successful in 1m18s
Security / secrets (pull_request) Successful in 5s
Security / dependencies (pull_request) Successful in 1m18s
Security / sast (pull_request) Successful in 56s

Unused after the frontend widget removal (#44); category-heatmap kept. Build+tests green.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
cesnimda
2026-07-04 21:21:12 +02:00
parent 2f173dc3e5
commit cd1f8a04a1
4 changed files with 1 additions and 21 deletions
@@ -24,9 +24,6 @@ public class AnalyticsController : ApiControllerBase
public async Task<IActionResult> Volume([FromQuery] int days = 90, CancellationToken ct = default)
=> Ok(await _analytics.GetVolumeOverTimeAsync(UserId, Math.Clamp(days, 1, 3660), ct));
[HttpGet("heatmap")]
public async Task<IActionResult> Heatmap(CancellationToken ct) => Ok(await _analytics.GetHeatmapAsync(UserId, ct));
[HttpGet("category-heatmap")]
public async Task<IActionResult> CategoryHeatmap(CancellationToken ct) => Ok(await _analytics.GetCategoryHeatmapAsync(UserId, ct));