Twitter notifications working from end-to-end.

This commit is contained in:
Mark McDowall 2011-10-28 01:14:13 -07:00
commit d9bef59ec2
6 changed files with 77 additions and 6 deletions

View file

@ -106,6 +106,7 @@ namespace NzbDrone.Core
{
_kernel.Bind<ExternalNotificationBase>().To<Xbmc>();
_kernel.Bind<ExternalNotificationBase>().To<Smtp>();
_kernel.Bind<ExternalNotificationBase>().To<Twitter>();
var notifiers = _kernel.GetAll<ExternalNotificationBase>();
_kernel.Get<ExternalNotificationProvider>().InitializeNotifiers(notifiers.ToList());