Registered jobs

This commit is contained in:
Mark McDowall 2012-09-04 00:11:15 -07:00
parent 23118871fd
commit fcf0ca7299
1 changed files with 2 additions and 0 deletions

View File

@ -135,6 +135,8 @@ namespace NzbDrone.Core
Kernel.Bind<IJob>().To<SearchHistoryCleanupJob>().InSingletonScope();
Kernel.Bind<IJob>().To<PastWeekBacklogSearchJob>().InSingletonScope();
Kernel.Bind<IJob>().To<RefreshEpisodeMetadata>().InSingletonScope();
Kernel.Bind<IJob>().To<CleanupRecycleBinJob>().InSingletonScope();
Kernel.Bind<IJob>().To<EmptyRecycleBinJob>().InSingletonScope();
Kernel.Get<JobProvider>().Initialize();
Kernel.Get<WebTimer>().StartTimer(30);