1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

New: Kometa metadata file creation disabled

Closes #7400
This commit is contained in:
Mark McDowall
2024-12-01 16:20:55 -08:00
committed by GitHub
parent fb9a5efe05
commit c62fc9d05b
30 changed files with 445 additions and 599 deletions
+2 -9
View File
@@ -1,20 +1,13 @@
import ModelBase from 'App/ModelBase';
import Field from './Field';
import Provider from './Provider';
export type Protocol = 'torrent' | 'usenet' | 'unknown';
interface DownloadClient extends ModelBase {
interface DownloadClient extends Provider {
enable: boolean;
protocol: Protocol;
priority: number;
removeCompletedDownloads: boolean;
removeFailedDownloads: boolean;
name: string;
fields: Field[];
implementationName: string;
implementation: string;
configContract: string;
infoLink: string;
tags: number[];
}