mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-15 23:02:18 +01:00
add EnableSubtitleManagement permission
This commit is contained in:
@@ -15,6 +15,7 @@ namespace MediaBrowser.Model.Users
|
||||
{
|
||||
IsHidden = true;
|
||||
EnableCollectionManagement = false;
|
||||
EnableSubtitleManagement = false;
|
||||
|
||||
EnableContentDeletion = false;
|
||||
EnableContentDeletionFromFolders = Array.Empty<string>();
|
||||
@@ -83,6 +84,13 @@ namespace MediaBrowser.Model.Users
|
||||
[DefaultValue(false)]
|
||||
public bool EnableCollectionManagement { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance can manage subtitles.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is allowed; otherwise, <c>false</c>.</value>
|
||||
[DefaultValue(false)]
|
||||
public bool EnableSubtitleManagement { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is disabled.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user