mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(filters): add download limits (#266)
* feat(filters): add download limits
This commit is contained in:
parent
2903e7b493
commit
2a23ed0185
9 changed files with 458 additions and 82 deletions
|
@ -263,6 +263,33 @@ export const NotificationTypeOptions: OptionBasic[] = [
|
|||
}
|
||||
];
|
||||
|
||||
export const downloadsPerUnitOptions: OptionBasic[] = [
|
||||
{
|
||||
label: "Select",
|
||||
value: ""
|
||||
},
|
||||
{
|
||||
label: "HOUR",
|
||||
value: "HOUR"
|
||||
},
|
||||
{
|
||||
label: "DAY",
|
||||
value: "DAY"
|
||||
},
|
||||
{
|
||||
label: "WEEK",
|
||||
value: "WEEK"
|
||||
},
|
||||
{
|
||||
label: "MONTH",
|
||||
value: "MONTH"
|
||||
},
|
||||
{
|
||||
label: "EVER",
|
||||
value: "EVER"
|
||||
}
|
||||
];
|
||||
|
||||
export interface SelectOption {
|
||||
label: string;
|
||||
description: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue