mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 09:49:13 +00:00
feat(filters): implement min and max seeders/leechers filtering for Torznab feeds (#1342)
* feat(filter):implement min and max seeders/leechers filtering * chore: go fmt and reorder fields --------- Co-authored-by: ze0s <ze0s@riseup.net>
This commit is contained in:
parent
256fbb49ba
commit
a86258aaa7
10 changed files with 192 additions and 3 deletions
4
web/src/types/Filter.d.ts
vendored
4
web/src/types/Filter.d.ts
vendored
|
@ -67,6 +67,10 @@ interface Filter {
|
|||
except_tags_any: string;
|
||||
tags_match_logic: string;
|
||||
except_tags_match_logic: string;
|
||||
min_seeders: number;
|
||||
max_seeders: number;
|
||||
min_leechers: number;
|
||||
max_leechers: number;
|
||||
actions_count: number;
|
||||
actions_enabled_count: number;
|
||||
actions: Action[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue