mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 02:09:13 +00:00
Fix: update download client (#23)
* feat: use password fields * fix: update download client and better logs
This commit is contained in:
parent
d4aa2027c0
commit
f78ca85df2
4 changed files with 91 additions and 64 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue