feat(filters): implement AnnounceType (#1837)

* feat(filters): implement AnnounceType

* fix: rss tests
This commit is contained in:
ze0s 2024-12-08 21:08:24 +01:00 committed by GitHub
parent ec85d53d8f
commit f644b3a4d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 155 additions and 17 deletions

View file

@ -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;

View file

@ -11,6 +11,7 @@ interface Release {
filter: string;
protocol: string;
implementation: string;
announce_type: string;
name: string;
title: string;
size: number;