feat: OMV integration & health monitoring widget (#1142)
This commit is contained in:
@@ -119,6 +119,12 @@ export const integrationDefs = {
|
||||
iconUrl: "https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/home-assistant.png",
|
||||
category: ["smartHomeServer"],
|
||||
},
|
||||
openmediavault: {
|
||||
name: "OpenMediaVault",
|
||||
secretKinds: [["username", "password"]],
|
||||
iconUrl: "https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons@master/png/openmediavault.png",
|
||||
category: ["healthMonitoring"],
|
||||
},
|
||||
} as const satisfies Record<string, integrationDefinition>;
|
||||
|
||||
export const integrationKinds = objectKeys(integrationDefs) as AtLeastOneOf<IntegrationKind>;
|
||||
@@ -168,4 +174,5 @@ export type IntegrationCategory =
|
||||
| "usenet"
|
||||
| "torrent"
|
||||
| "smartHomeServer"
|
||||
| "indexerManager";
|
||||
| "indexerManager"
|
||||
| "healthMonitoring";
|
||||
|
||||
@@ -16,5 +16,6 @@ export const widgetKinds = [
|
||||
"mediaRequests-requestStats",
|
||||
"rssFeed",
|
||||
"indexerManager",
|
||||
"healthMonitoring",
|
||||
] as const;
|
||||
export type WidgetKind = (typeof widgetKinds)[number];
|
||||
|
||||
Reference in New Issue
Block a user