mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08: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
|
@ -5,6 +5,29 @@
|
|||
|
||||
import { MultiSelectOption } from "@components/inputs/select";
|
||||
|
||||
export const AnnounceTypeOptions: MultiSelectOption[] = [
|
||||
{
|
||||
label: "New",
|
||||
value: "NEW"
|
||||
},
|
||||
{
|
||||
label: "Checked",
|
||||
value: "CHECKED"
|
||||
},
|
||||
{
|
||||
label: "Promo",
|
||||
value: "PROMO"
|
||||
},
|
||||
{
|
||||
label: "Promo GP",
|
||||
value: "PROMO_GP"
|
||||
},
|
||||
{
|
||||
label: "Resurrected",
|
||||
value: "RESURRECTED"
|
||||
}
|
||||
];
|
||||
|
||||
export const resolutions = [
|
||||
"2160p",
|
||||
"1080p",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue