Fix: update download client (#23)

* feat: use password fields

* fix: update download client and better logs
This commit is contained in:
Ludvig Lundgren 2021-08-30 23:55:38 +02:00 committed by GitHub
parent d4aa2027c0
commit f78ca85df2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 91 additions and 64 deletions

View file

@ -117,9 +117,14 @@ export enum DOWNLOAD_CLIENT_TYPES {
}
export interface DownloadClient {
id: number;
id?: number;
name: string;
enabled: boolean;
host: string;
port: number;
ssl: boolean;
username: string;
password: string;
type: DownloadClientType;
settings: object;
}