Add OMV integration / widget (#1879)

feat: Add health monitoring widget (OMV)
OpenMediaVault as first supported integration.
This commit is contained in:
Yossi Hillali
2024-02-27 21:44:52 +02:00
committed by GitHub
parent db2501633d
commit b51fcdb342
12 changed files with 523 additions and 2 deletions

View File

@@ -57,7 +57,8 @@ export type IntegrationType =
| 'nzbGet'
| 'pihole'
| 'adGuardHome'
| 'homeAssistant';
| 'homeAssistant'
| 'openmediavault';
export type AppIntegrationType = {
type: IntegrationType | null;
@@ -101,6 +102,7 @@ export const integrationFieldProperties: {
pihole: ['apiKey'],
adGuardHome: ['username', 'password'],
homeAssistant: ['apiKey'],
openmediavault: ['username', 'password'],
};
export type IntegrationFieldDefinitionType = {