Show domains in pool status

This commit is contained in:
2026-08-18 02:53:40 +03:00
parent a1fa90c66a
commit eb5f4cbf5a
12 changed files with 517 additions and 141 deletions
+3 -2
View File
@@ -1,11 +1,12 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { v0_2_0 } from './v0_2_0'
import { v0_2_1 } from './v0_2_1'
import { v0_2_2 } from './v0_2_2'
// The current version must be listed first; `other` carries the rest of the
// graph so StartOS can find a migration path from whatever version an existing
// install is currently on.
export const versionGraph = VersionGraph.of({
current: v0_2_1,
other: [v0_2_0],
current: v0_2_2,
other: [v0_2_0, v0_2_1],
})