1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add drawer to experimental layout

This commit is contained in:
Bill Thornton 2022-11-28 16:39:13 -05:00
parent bf62e7a15d
commit 27776d57fc
15 changed files with 977 additions and 11 deletions

View file

@ -0,0 +1,16 @@
// NOTE: This should be included in the OpenAPI spec ideally
// https://github.com/jellyfin/jellyfin/blob/47290a8c3665f3adb859bda19deb66f438f2e5d0/MediaBrowser.Model/Entities/CollectionType.cs
export enum CollectionType {
Movies = 'movies',
TvShows = 'tvshows',
Music = 'music',
MusicVideos = 'musicvideos',
Trailers = 'trailers',
HomeVideos = 'homevideos',
BoxSets = 'boxsets',
Books = 'books',
Photos = 'photos',
LiveTv = 'livetv',
Playlists = 'playlists',
Folders = 'folders'
}