feat(settings): persist report excluded paths and standup weekday

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-06-03 09:50:03 +02:00
parent e106b00b16
commit 5b89e3d03f
6 changed files with 45 additions and 4 deletions

View File

@@ -494,7 +494,9 @@ public sealed record AppSettingsDto(
string WorktreeStrategy,
string? CentralWorktreeRoot,
bool WorktreeAutoCleanupEnabled,
int WorktreeAutoCleanupDays);
int WorktreeAutoCleanupDays,
string? ReportExcludedPaths,
int StandupWeekday);
public sealed record WorktreeCleanupDto(int Removed);
public sealed record WorktreeResetDto(int Removed, int TasksAffected, bool Blocked, int RunningTasks);