Fixed a dependancy issue with #844

This commit is contained in:
Jamie.Rees 2016-12-29 09:44:16 +00:00
parent 0811a89c86
commit b2e53c05af
3 changed files with 5 additions and 3 deletions

View file

@ -26,6 +26,7 @@
#endregion
using Ninject.Modules;
using Ombi.Core;
using Ombi.Core.Queue;
using Ombi.Helpers.Analytics;
using Ombi.Services.Interfaces;
@ -49,6 +50,7 @@ namespace Ombi.UI.NinjectModules
Bind<IRecentlyAdded>().To<RecentlyAdded>();
Bind<IPlexContentCacher>().To<PlexContentCacher>();
Bind<IJobFactory>().To<CustomJobFactory>();
Bind<IMovieSender>().To<MovieSender>();
Bind<IAnalytics>().To<Analytics>();
Bind<ISchedulerFactory>().To<StdSchedulerFactory>();