mirror of
https://github.com/Radarr/Radarr
synced 2025-10-06 04:32:58 +02:00
New: Added silent notification option to telegram
This commit is contained in:
@@ -38,6 +38,7 @@ namespace NzbDrone.Core.Notifications.Telegram
|
|||||||
.AddFormParameter("chat_id", settings.ChatId)
|
.AddFormParameter("chat_id", settings.ChatId)
|
||||||
.AddFormParameter("parse_mode", "HTML")
|
.AddFormParameter("parse_mode", "HTML")
|
||||||
.AddFormParameter("text", text)
|
.AddFormParameter("text", text)
|
||||||
|
.AddFormParameter("disable_notification", settings.SendSilently)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
_httpClient.Post(request);
|
_httpClient.Post(request);
|
||||||
|
@@ -24,7 +24,8 @@ namespace NzbDrone.Core.Notifications.Telegram
|
|||||||
[FieldDefinition(1, Label = "Chat ID", HelpLink = "http://stackoverflow.com/a/37396871/882971", HelpText = "You must start a conversation with the bot or add it to your group to receive messages")]
|
[FieldDefinition(1, Label = "Chat ID", HelpLink = "http://stackoverflow.com/a/37396871/882971", HelpText = "You must start a conversation with the bot or add it to your group to receive messages")]
|
||||||
public string ChatId { get; set; }
|
public string ChatId { get; set; }
|
||||||
|
|
||||||
public bool IsValid => !string.IsNullOrWhiteSpace(ChatId) && !string.IsNullOrWhiteSpace(BotToken);
|
[FieldDefinition(2, Label = "Send Silently", Type = FieldType.Checkbox, HelpText = "Sends the message silently. Users will receive a notification with no sound")]
|
||||||
|
public bool SendSilently { get; set; }
|
||||||
|
|
||||||
public NzbDroneValidationResult Validate()
|
public NzbDroneValidationResult Validate()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user