aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-01-31 15:20:34 +0900
committerdkanada <dkanada@users.noreply.github.com>2019-02-03 19:40:55 +0900
commit08ca1337a92c62b68d5a901cdb372b9b6b0a6a02 (patch)
tree804536c4c80542c238939010660ef4029f9c060e /Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
parent07072d9f7bf269926a4d7aad580e2e78c444a2cd (diff)
unhide several scheduled tasks and add missing properties
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs')
-rw-r--r--Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/PeopleValidationTask.cs
index 68031170f..ebdc6a13e 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";
-
/// <summary>
/// Returns the task to be executed
/// </summary>
@@ -77,5 +75,13 @@ namespace Emby.Server.Implementations.ScheduledTasks
/// </summary>
/// <value>The category.</value>
public string Category => "Library";
+
+ public string Key => "RefreshPeople";
+
+ public bool IsHidden => false;
+
+ public bool IsEnabled => true;
+
+ public bool IsLogged => true;
}
}