Add NZBGet download client

This commit is contained in:
Jon Terry
2022-11-06 10:05:35 -06:00
parent 5077d753b6
commit 92c09207f6
30 changed files with 559 additions and 112 deletions

View File

@@ -76,6 +76,7 @@ export const ServiceTypeList = [
'Overseerr',
'Jellyseerr',
'Sabnzbd',
'NZBGet'
];
export type ServiceType =
| 'Other'
@@ -91,7 +92,8 @@ export type ServiceType =
| 'Overseerr'
| 'Jellyseerr'
| 'Transmission'
| 'Sabnzbd';
| 'Sabnzbd'
| 'NZBGet';
export function tryMatchPort(name: string | undefined, form?: any) {
if (!name) {
@@ -118,6 +120,7 @@ export const portmap = [
{ name: 'overseerr', value: '5055' },
{ name: 'dash.', value: '3001' },
{ name: 'sabnzbd', value: '8080' },
{ name: 'nzbget', value: '6789' }
];
export const MatchingImages: {