mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
add channels infrastructure
This commit is contained in:
parent
3228f50895
commit
6936336b82
19 changed files with 437 additions and 60 deletions
|
|
@ -57,6 +57,7 @@ namespace MediaBrowser.Model.Configuration
|
|||
public bool GroupMoviesIntoBoxSets { get; set; }
|
||||
|
||||
public string[] BlockedMediaFolders { get; set; }
|
||||
public string[] BlockedChannels { get; set; }
|
||||
|
||||
public UnratedItem[] BlockUnratedItems { get; set; }
|
||||
|
||||
|
|
@ -74,6 +75,7 @@ namespace MediaBrowser.Model.Configuration
|
|||
GroupMoviesIntoBoxSets = true;
|
||||
|
||||
BlockedMediaFolders = new string[] { };
|
||||
BlockedChannels = new string[] { };
|
||||
BlockUnratedItems = new UnratedItem[] { };
|
||||
}
|
||||
}
|
||||
|
|
@ -88,6 +90,7 @@ namespace MediaBrowser.Model.Configuration
|
|||
Book,
|
||||
LiveTvChannel,
|
||||
LiveTvProgram,
|
||||
ChannelContent,
|
||||
Other
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue