Added job for updating XEM mappings

XEM mappings will also be updated when a new series is imported
This commit is contained in:
Mark McDowall 2012-10-17 21:15:42 -07:00
commit 5cd9438939
4 changed files with 109 additions and 32 deletions

View file

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