feat(data): add findings_tracked to lists

This commit is contained in:
mika kuns
2026-08-10 10:06:50 +02:00
parent 4d997a5f99
commit 389892d277
5 changed files with 928 additions and 0 deletions
+3
View File
@@ -11,6 +11,9 @@ public sealed class ListEntity
// A manual list holds reminders rather than Claude work: new tasks created here start out
// manual (see TaskEntity.IsManual).
public bool IsManual { get; set; }
// When true the project's .claudedo/ findings store is committed with the repo; when false it
// is kept out of git via .git/info/exclude (see FindingsStore).
public bool FindingsTracked { get; set; }
// Navigation properties
public ListConfigEntity? Config { get; set; }