feat: add dash. integration

This commit is contained in:
MauriceNino
2022-06-27 17:27:59 +02:00
parent 2702c9a7cf
commit da7b478d81
7 changed files with 275 additions and 46 deletions

View File

@@ -61,6 +61,7 @@ export const Targets = [
export const ServiceTypeList = [
'Other',
'Emby',
'Dash.',
'Deluge',
'Lidarr',
'Plex',
@@ -69,18 +70,8 @@ export const ServiceTypeList = [
'Sonarr',
'qBittorrent',
'Transmission',
];
export type ServiceType =
| 'Other'
| 'Emby'
| 'Deluge'
| 'Lidarr'
| 'Plex'
| 'Radarr'
| 'Readarr'
| 'Sonarr'
| 'qBittorrent'
| 'Transmission';
] as const;
export type ServiceType = typeof ServiceTypeList[number];
export interface serviceItem {
id: string;