Updated the Radarr API to support the new V3 endpoints. There's now a new V3 flag on the radarr settings

This commit is contained in:
tidusjar 2020-10-11 00:52:37 +01:00
parent b31f8dd962
commit 26b2a574be
24 changed files with 347 additions and 94 deletions

View file

@ -132,6 +132,7 @@ namespace Ombi.DependencyInjection
services.AddTransient<ITvMazeApi, TvMazeApi>();
services.AddTransient<ITraktApi, TraktApi>();
services.AddTransient<IRadarrApi, RadarrApi>();
services.AddTransient<IRadarrV3Api, RadarrV3Api>();
services.AddTransient<IDiscordApi, DiscordApi>();
services.AddTransient<IPushbulletApi, PushbulletApi>();
services.AddTransient<IOmbiService, OmbiService>();