fix(jellyseerr): add missing deleted media status (#3439)

This commit is contained in:
Meier Lukas
2025-06-23 17:45:00 +02:00
committed by GitHub
parent ded39930ca
commit 6b474c3df4
3 changed files with 11 additions and 2 deletions

View File

@@ -43,6 +43,7 @@ export interface MediaRequestStats {
users: RequestUser[];
}
// https://github.com/fallenbagel/jellyseerr/blob/0fd03f38480f853e7015ad9229ed98160e37602e/server/constants/media.ts#L1
export enum MediaRequestStatus {
PendingApproval = 1,
Approved = 2,
@@ -51,6 +52,7 @@ export enum MediaRequestStatus {
Completed = 5,
}
// https://github.com/fallenbagel/jellyseerr/blob/0fd03f38480f853e7015ad9229ed98160e37602e/server/constants/media.ts#L14
export enum MediaAvailability {
Unknown = 1,
Pending = 2,
@@ -58,4 +60,5 @@ export enum MediaAvailability {
PartiallyAvailable = 4,
Available = 5,
Blacklisted = 6,
Deleted = 7,
}