Added RecentBacklogSearchJob to fill missing episodes from the last 30 days, runs nightly.

This commit is contained in:
Mark McDowall 2011-11-23 17:09:09 -08:00
commit e781501021
5 changed files with 137 additions and 0 deletions

View file

@ -95,6 +95,7 @@ namespace NzbDrone.Core
Kernel.Bind<IJob>().To<ConvertEpisodeJob>().InSingletonScope();
Kernel.Bind<IJob>().To<AppUpdateJob>().InSingletonScope();
Kernel.Bind<IJob>().To<TrimLogsJob>().InSingletonScope();
Kernel.Bind<IJob>().To<RecentBacklogSearchJob>().InSingletonScope();
Kernel.Get<JobProvider>().Initialize();
Kernel.Get<WebTimer>().StartTimer(30);