mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Twitter notifications working from end-to-end.
This commit is contained in:
parent
a2735d7716
commit
d9bef59ec2
6 changed files with 77 additions and 6 deletions
|
@ -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); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue