unhide several scheduled tasks and add missing properties

This commit is contained in:
dkanada
2019-01-31 15:20:34 +09:00
parent 07072d9f7b
commit 08ca1337a9
6 changed files with 34 additions and 28 deletions

View File

@@ -164,8 +164,6 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// <value>The name.</value>
public string Name => "Cache file cleanup";
public string Key => "DeleteCacheFiles";
/// <summary>
/// Gets the description.
/// </summary>
@@ -178,11 +176,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// <value>The category.</value>
public string Category => "Maintenance";
public string Key => "DeleteCacheFiles";
/// <summary>
/// Gets a value indicating whether this instance is hidden.
/// </summary>
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
public bool IsHidden => true;
public bool IsHidden => false;
public bool IsEnabled => true;