mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
make metadata path configurable
This commit is contained in:
@@ -52,6 +52,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool EnableLiveTvAccess { get; set; }
|
||||
|
||||
public bool EnableMediaPlayback { get; set; }
|
||||
public bool EnableContentDeletion { get; set; }
|
||||
|
||||
public string[] BlockedMediaFolders { get; set; }
|
||||
|
||||
@@ -63,8 +64,9 @@ namespace MediaBrowser.Model.Configuration
|
||||
public UserConfiguration()
|
||||
{
|
||||
IsAdministrator = true;
|
||||
EnableRemoteControlOfOtherUsers = true;
|
||||
|
||||
EnableRemoteControlOfOtherUsers = true;
|
||||
EnableContentDeletion = true;
|
||||
EnableLiveTvManagement = true;
|
||||
EnableMediaPlayback = true;
|
||||
EnableLiveTvAccess = true;
|
||||
|
||||
Reference in New Issue
Block a user