mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
unhide several scheduled tasks and add missing properties
This commit is contained in:
parent
07072d9f7b
commit
08ca1337a9
6 changed files with 34 additions and 28 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue