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

@ -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",