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

@@ -68,8 +68,6 @@ namespace Emby.Server.Implementations.ScheduledTasks
};
}
public string Key => "RefreshChapterImages";
/// <summary>
/// Returns the task to be executed
/// </summary>
@@ -178,5 +176,13 @@ namespace Emby.Server.Implementations.ScheduledTasks
/// </summary>
/// <value>The category.</value>
public string Category => "Library";
public string Key => "RefreshChapterImages";
public bool IsHidden => false;
public bool IsEnabled => true;
public bool IsLogged => true;
}
}