From 3a7f305221893433870aa2540c1fefd312c8541b Mon Sep 17 00:00:00 2001 From: Christophe Vila Date: Mon, 27 Jul 2026 09:01:17 +0200 Subject: [PATCH] docs(store): update stale SyncRun doc comment Every run recorded today is SyncKindFull (the single-pass "Sync now" action) -- "backfill"/"incremental" only ever appear in historical rows predating that consolidation. Co-Authored-By: Claude Sonnet 5 --- backend/internal/store/syncruns.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/internal/store/syncruns.go b/backend/internal/store/syncruns.go index 65b6954..eab7c76 100644 --- a/backend/internal/store/syncruns.go +++ b/backend/internal/store/syncruns.go @@ -18,7 +18,10 @@ const ( SyncStatusError = "error" ) -// SyncRun records one backfill or incremental sync attempt. +// SyncRun records one sync attempt. Every run recorded today is +// SyncKindFull (the "Sync now" action, covering backfill + incremental sync +// + detail/workout fill in a single pass) -- "backfill"/"incremental" only +// ever appear in historical rows predating that consolidation. type SyncRun struct { ID int64 Kind string