feat(ui): add MissionControlViewModel

This commit is contained in:
Mika Kuns
2026-06-25 14:39:21 +02:00
parent aa7a49f634
commit 42da840066
7 changed files with 239 additions and 0 deletions

View File

@@ -158,6 +158,10 @@ sealed class Program
sp,
sp.GetRequiredService<INotesApi>(),
sp.GetRequiredService<IMergeCoordinator>()));
sc.AddSingleton<MissionControlViewModel>(sp =>
new MissionControlViewModel(
sp.GetRequiredService<IDbContextFactory<ClaudeDoDbContext>>(),
sp.GetRequiredService<IWorkerClient>()));
sc.AddSingleton<IslandsShellViewModel>(sp =>
{
var shell = ActivatorUtilities.CreateInstance<IslandsShellViewModel>(sp);