mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(downloadclients): qBit rules add speed threshold condition (#652)
* fix: qbit add rules min check * feat(downloadclients): add check condition * feat(downloadclient): return on rejection
This commit is contained in:
parent
4ae2773dc9
commit
a6c1944df8
6 changed files with 194 additions and 34 deletions
|
@ -403,6 +403,18 @@ export const downloadsPerUnitOptions: OptionBasic[] = [
|
|||
}
|
||||
];
|
||||
|
||||
export const DownloadRuleConditionOptions: OptionBasic[] = [
|
||||
{
|
||||
label: "Always",
|
||||
value: "ALWAYS"
|
||||
},
|
||||
{
|
||||
label: "Max downloads reached",
|
||||
value: "MAX_DOWNLOADS_REACHED"
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
export interface SelectOption {
|
||||
label: string;
|
||||
description: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue