diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-29 19:54:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-29 19:54:20 +0200 |
| commit | b6e26ba3d9656fe8c9e42f0a19ba04b575959046 (patch) | |
| tree | b6e43fce5693febc0fe0a672fffbd54b17efd09b /src | |
| parent | 0beb07c40756aca5ab6a6ba4f8494bc5147e3c2b (diff) | |
| parent | b141b893eb2ef759eff8f9ba3d70ac31f22c8acc (diff) | |
Merge pull request #16177 from theguymadmax/homevideo-viewtypes
Add new viewtypes options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Jellyfin.Database/Jellyfin.Database.Implementations/Enums/ViewType.cs | 47 |
1 files changed, 46 insertions, 1 deletions
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 /// <summary> /// Shows upcoming. /// </summary> - Upcoming = 20 + Upcoming = 20, + + /// <summary> + /// Shows authors. + /// </summary> + Authors = 21, + + /// <summary> + /// Shows books. + /// </summary> + Books = 22, + + /// <summary> + /// Shows folders. + /// </summary> + Folders = 23, + + /// <summary> + /// Shows mixed media. + /// </summary> + Mixed = 24, + + /// <summary> + /// Shows photos. + /// </summary> + Photos = 25, + + /// <summary> + /// Shows photo albums. + /// </summary> + PhotoAlbums = 26, + + /// <summary> + /// Shows series timers. + /// </summary> + SeriesTimers = 27, + + /// <summary> + /// Shows studios. + /// </summary> + Studios = 28, + + /// <summary> + /// Shows videos. + /// </summary> + Videos = 29 } |
