|
@@ -14,7 +14,7 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
|
|
|
/// <summary>
|
|
|
/// Deletes old cache files
|
|
|
/// </summary>
|
|
|
- public class DeleteCacheFileTask : IScheduledTask
|
|
|
+ public class DeleteCacheFileTask : IScheduledTask, IConfigurableScheduledTask
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// Gets or sets the application paths.
|
|
@@ -160,5 +160,14 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
|
|
|
return "Maintenance";
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /// <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
|
|
|
+ {
|
|
|
+ get { return true; }
|
|
|
+ }
|
|
|
}
|
|
|
}
|