mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 09:49:13 +00:00
feat(filters): implement AnnounceType
(#1837)
* feat(filters): implement AnnounceType * fix: rss tests
This commit is contained in:
parent
ec85d53d8f
commit
f644b3a4d6
12 changed files with 155 additions and 17 deletions
1
web/src/types/Filter.d.ts
vendored
1
web/src/types/Filter.d.ts
vendored
|
@ -13,6 +13,7 @@ interface Filter {
|
|||
max_size: string;
|
||||
delay: number;
|
||||
priority: number;
|
||||
announce_types: string[];
|
||||
max_downloads: number;
|
||||
max_downloads_unit: string;
|
||||
match_releases: string;
|
||||
|
|
1
web/src/types/Release.d.ts
vendored
1
web/src/types/Release.d.ts
vendored
|
@ -11,6 +11,7 @@ interface Release {
|
|||
filter: string;
|
||||
protocol: string;
|
||||
implementation: string;
|
||||
announce_type: string;
|
||||
name: string;
|
||||
title: string;
|
||||
size: number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue