feat: add machine federation

This commit is contained in:
Marc Kassubeck
2026-05-26 13:07:31 +02:00
parent b5f8810eda
commit a142f5ed40
29 changed files with 852 additions and 1150 deletions
+4
View File
@@ -21,6 +21,10 @@ function createContext(statePatch: Partial<AppState> = {}) {
openActionPalette: vi.fn(() => { calls.push("openActionPalette"); }),
focusPrompt: vi.fn(() => { calls.push("focusPrompt"); }),
addProject: vi.fn(() => { calls.push("addProject"); }),
addMachine: vi.fn(() => { calls.push("addMachine"); }),
refreshSelectedMachine: vi.fn(() => { calls.push("refreshSelectedMachine"); }),
removeSelectedMachine: vi.fn(() => { calls.push("removeSelectedMachine"); }),
openSelectedMachine: vi.fn(() => { calls.push("openSelectedMachine"); }),
configureAuth: vi.fn(() => { calls.push("configureAuth"); }),
logoutAuth: vi.fn(() => { calls.push("logoutAuth"); }),
openThemePicker: vi.fn(() => { calls.push("openThemePicker"); }),