Fixed some issues around the tv requests area

Added mattermost and telegram notifications #1459 #865 #1457
This commit is contained in:
tidusjar 2017-08-21 17:06:07 +01:00
parent 03e9852330
commit bf043fc76e
48 changed files with 1164 additions and 192 deletions

View file

@ -28,7 +28,9 @@ using Ombi.Notifications.Agents;
using Ombi.Schedule.Jobs.Radarr;
using Ombi.Api;
using Ombi.Api.FanartTv;
using Ombi.Api.Mattermost;
using Ombi.Api.Pushbullet;
using Ombi.Api.Pushover;
using Ombi.Api.Service;
using Ombi.Api.Slack;
using Ombi.Core.Rule.Interfaces;
@ -78,6 +80,8 @@ namespace Ombi.DependencyInjection
services.AddTransient<IPushbulletApi, PushbulletApi>();
services.AddTransient<IOmbiService, OmbiService>();
services.AddTransient<IFanartTvApi, FanartTvApi>();
services.AddTransient<IPushoverApi, PushoverApi>();
services.AddTransient<IMattermostApi, MattermostApi>();
}
public static void RegisterStore(this IServiceCollection services)
@ -109,6 +113,9 @@ namespace Ombi.DependencyInjection
services.AddTransient<IEmailNotification, EmailNotification>();
services.AddTransient<IPushbulletNotification, PushbulletNotification>();
services.AddTransient<ISlackNotification, SlackNotification>();
services.AddTransient<ISlackNotification, SlackNotification>();
services.AddTransient<IMattermostNotification, MattermostNotification>();
services.AddTransient<IPushoverNotification, PushoverNotification>();
}
public static void RegisterJobs(this IServiceCollection services)