Merge pull request #2174 from tidusjar/feature/plexoauth

Added Plex OAuth into Ombi
This commit is contained in:
Jamie 2018-04-20 10:55:19 +01:00 committed by GitHub
commit 4e8daeecd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 691 additions and 84 deletions

View file

@ -51,6 +51,7 @@ using Ombi.Store.Repository.Requests;
using Ombi.Updater;
using PlexContentCacher = Ombi.Schedule.Jobs.Plex;
using Ombi.Api.Telegram;
using Ombi.Core.Authentication;
using Ombi.Core.Processor;
using Ombi.Schedule.Jobs.Plex.Interfaces;
using Ombi.Schedule.Jobs.SickRage;
@ -82,6 +83,7 @@ namespace Ombi.DependencyInjection
services.AddTransient<IRecentlyAddedEngine, RecentlyAddedEngine>();
services.AddTransient<ITvSender, TvSender>();
services.AddTransient<IMassEmailSender, MassEmailSender>();
services.AddTransient<IPlexOAuthManager, PlexOAuthManager>();
}
public static void RegisterHttp(this IServiceCollection services)
{