mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Merge pull request #1100 from IvanBrazza/develop
Pushbullet: Source device support
This commit is contained in:
commit
9895b5bc1d
@ -5,6 +5,7 @@
|
||||
using NLog;
|
||||
using RestSharp;
|
||||
using NzbDrone.Core.Rest;
|
||||
using NzbDrone.Common.Extensions;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.PushBullet
|
||||
{
|
||||
@ -151,6 +152,11 @@ private void SendNotification(string title, string message, RestRequest request,
|
||||
request.AddParameter("title", title);
|
||||
request.AddParameter("body", message);
|
||||
|
||||
if (settings.SenderId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
request.AddParameter("source_device_iden", settings.SenderId);
|
||||
}
|
||||
|
||||
client.Authenticator = new HttpBasicAuthenticator(settings.ApiKey, string.Empty);
|
||||
client.ExecuteAndValidate(request);
|
||||
}
|
||||
|
@ -33,6 +33,9 @@ public PushBulletSettings()
|
||||
[FieldDefinition(2, Label = "Channel Tags", HelpText = "List of Channel Tags to send notifications to", Type = FieldType.Tag)]
|
||||
public IEnumerable<string> ChannelTags { get; set; }
|
||||
|
||||
[FieldDefinition(3, Label = "Sender ID", HelpText = "The device ID to send notifications from, use device_iden in the device's URL on pushbullet.com (leave blank to send from yourself)")]
|
||||
public string SenderId { get; set; }
|
||||
|
||||
public NzbDroneValidationResult Validate()
|
||||
{
|
||||
return new NzbDroneValidationResult(Validator.Validate(this));
|
||||
|
Loading…
Reference in New Issue
Block a user