Add ad guard home (#937)

*  Add add guard home

*  Add request for blocked domains and fix request for blocked queries

* ♻️ PR feedback

*  Fix tests
This commit is contained in:
Manuel
2023-05-20 14:42:15 +02:00
committed by GitHub
parent 85dfb5bb58
commit fb52c4b003
15 changed files with 644 additions and 255 deletions

View File

@@ -45,7 +45,8 @@ export type IntegrationType =
| 'plex'
| 'jellyfin'
| 'nzbGet'
| 'pihole';
| 'pihole'
| 'adGuardHome';
export type AppIntegrationType = {
type: IntegrationType | null;
@@ -86,6 +87,7 @@ export const integrationFieldProperties: {
jellyfin: ['username', 'password'],
plex: ['apiKey'],
pihole: ['password'],
adGuardHome: ['username', 'password'],
};
export type IntegrationFieldDefinitionType = {