🔀 Merge pull request #373 from JannesV/feature/usenet

Feature/usenet
This commit is contained in:
Thomas Camlong
2022-09-02 11:19:51 +02:00
committed by GitHub
31 changed files with 1314 additions and 172 deletions

View File

@@ -74,6 +74,7 @@ export const ServiceTypeList = [
'Transmission',
'Overseerr',
'Jellyseerr',
'Sabnzbd',
];
export type ServiceType =
| 'Other'
@@ -88,7 +89,8 @@ export type ServiceType =
| 'Sonarr'
| 'Overseerr'
| 'Jellyseerr'
| 'Transmission';
| 'Transmission'
| 'Sabnzbd';
export function tryMatchPort(name: string | undefined, form?: any) {
if (!name) {
@@ -114,6 +116,7 @@ export const portmap = [
{ name: 'emby', value: '8096' },
{ name: 'overseerr', value: '5055' },
{ name: 'dash.', value: '3001' },
{ name: 'sabnzbd', value: '8080' },
];
export const MatchingImages: {