From b141b893eb2ef759eff8f9ba3d70ac31f22c8acc Mon Sep 17 00:00:00 2001 From: theguymadmax Date: Mon, 2 Feb 2026 23:17:16 -0500 Subject: [PATCH] Add new viewtypes --- .../Enums/ViewType.cs | 47 ++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs index b2bcbf2bb6..34810b9199 100644 --- a/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs +++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs @@ -108,5 +108,50 @@ public enum ViewType /// /// Shows upcoming. /// - Upcoming = 20 + Upcoming = 20, + + /// + /// Shows authors. + /// + Authors = 21, + + /// + /// Shows books. + /// + Books = 22, + + /// + /// Shows folders. + /// + Folders = 23, + + /// + /// Shows mixed media. + /// + Mixed = 24, + + /// + /// Shows photos. + /// + Photos = 25, + + /// + /// Shows photo albums. + /// + PhotoAlbums = 26, + + /// + /// Shows series timers. + /// + SeriesTimers = 27, + + /// + /// Shows studios. + /// + Studios = 28, + + /// + /// Shows videos. + /// + Videos = 29 }