diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
index 5373b4392b..a6d43a69a1 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs
@@ -68,8 +68,6 @@ namespace Emby.Server.Implementations.ScheduledTasks
};
}
- public string Key => "RefreshChapterImages";
-
///
/// Returns the task to be executed
///
@@ -178,5 +176,13 @@ namespace Emby.Server.Implementations.ScheduledTasks
///
/// The category.
public string Category => "Library";
+
+ public string Key => "RefreshChapterImages";
+
+ public bool IsHidden => false;
+
+ public bool IsEnabled => true;
+
+ public bool IsLogged => true;
}
}
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
index 52077b242e..fc9d57e0b3 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs
@@ -164,8 +164,6 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// The name.
public string Name => "Cache file cleanup";
- public string Key => "DeleteCacheFiles";
-
///
/// Gets the description.
///
@@ -178,11 +176,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// The category.
public string Category => "Maintenance";
+ public string Key => "DeleteCacheFiles";
+
///
/// Gets a value indicating whether this instance is hidden.
///
/// true if this instance is hidden; otherwise, false.
- public bool IsHidden => true;
+ public bool IsHidden => false;
public bool IsEnabled => true;
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
index a57fe49457..ddb74ef3e8 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/DeleteLogFileTask.cs
@@ -81,8 +81,6 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
return Task.CompletedTask;
}
- public string Key => "CleanLogFiles";
-
///
/// Gets the name of the task
///
@@ -101,11 +99,13 @@ namespace Emby.Server.Implementations.ScheduledTasks.Tasks
/// The category.
public string Category => "Maintenance";
+ public string Key => "CleanLogFiles";
+
///
/// Gets a value indicating whether this instance is hidden.
///
/// true if this instance is hidden; otherwise, false.
- public bool IsHidden => true;
+ public bool IsHidden => false;
public bool IsEnabled => true;
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
index 68031170fd..ebdc6a13e4 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
@@ -47,8 +47,6 @@ namespace Emby.Server.Implementations.ScheduledTasks
};
}
- public string Key => "RefreshPeople";
-
///
/// Returns the task to be executed
///
@@ -77,5 +75,13 @@ namespace Emby.Server.Implementations.ScheduledTasks
///
/// The category.
public string Category => "Library";
+
+ public string Key => "RefreshPeople";
+
+ public bool IsHidden => false;
+
+ public bool IsEnabled => true;
+
+ public bool IsLogged => true;
}
}
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
index 62533a0173..8e27b0eb80 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs
@@ -50,11 +50,6 @@ namespace Emby.Server.Implementations.ScheduledTasks
};
}
- public string Key
- {
- get { return "PluginUpdates"; }
- }
-
///
/// Update installed plugins
///
@@ -114,26 +109,19 @@ namespace Emby.Server.Implementations.ScheduledTasks
/// Gets the name of the task
///
/// The name.
- public string Name
- {
- get { return "Check for plugin updates"; }
- }
+ public string Name => "Check for plugin updates";
///
/// Gets the description.
///
/// The description.
- public string Description
- {
- get { return "Downloads and installs updates for plugins that are configured to update automatically."; }
- }
+ public string Description => "Downloads and installs updates for plugins that are configured to update automatically.";
- public string Category
- {
- get { return "Application"; }
- }
+ public string Category => "Application";
- public bool IsHidden => true;
+ public string Key => "PluginUpdates";
+
+ public bool IsHidden => false;
public bool IsEnabled => true;
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
index f6fa64d136..618efd732b 100644
--- a/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
+++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs
@@ -77,5 +77,11 @@ namespace Emby.Server.Implementations.ScheduledTasks
public string Category => "Library";
public string Key => "RefreshLibrary";
+
+ public bool IsHidden => false;
+
+ public bool IsEnabled => true;
+
+ public bool IsLogged => true;
}
}