Added Discord notification #865

This commit is contained in:
Jamie.Rees 2017-06-07 16:28:17 +01:00
parent 4c797733ca
commit 43dbe854a6
18 changed files with 336 additions and 26 deletions

View file

@ -2,6 +2,8 @@
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Authorization;
using Microsoft.Extensions.DependencyInjection;
using Ombi.Api.Discord;
using Ombi.Api.Emby;
using Ombi.Api.Plex;
using Ombi.Api.Radarr;
@ -60,6 +62,7 @@ namespace Ombi.DependencyInjection
services.AddTransient<ITvMazeApi, TvMazeApi>();
services.AddTransient<ITraktApi, TraktApi>();
services.AddTransient<IRadarrApi, RadarrApi>();
services.AddTransient<IDiscordApi, DiscordApi>();
}
public static void RegisterStore(this IServiceCollection services)