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

@ -312,6 +312,20 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("SmtpToAddresses", value); }
}
public virtual Boolean TwitterNotifyOnGrab
{
get { return GetValueBoolean("TwitterNotifyOnGrab"); }
set { SetValue("TwitterNotifyOnGrab", value); }
}
public virtual Boolean TwitterNotifyOnDownload
{
get { return GetValueBoolean("TwitterNotifyOnDownload"); }
set { SetValue("TwitterNotifyOnDownload", value); }
}
public virtual string TwitterAccessToken
{
get { return GetValue("TwitterAccessToken", String.Empty); }