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

@@ -81,8 +81,6 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
return Task.CompletedTask;
}
public string Key => "CleanLogFiles";
/// <summary>
/// Gets the name of the task
/// </summary>
@@ -101,11 +99,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// <value>The category.</value>
public string Category => "Maintenance";
public string Key => "CleanLogFiles";
/// <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;