diff --git a/notifiers/twilio.go b/notifiers/twilio.go index cdf6b58c..db41d928 100644 --- a/notifiers/twilio.go +++ b/notifiers/twilio.go @@ -41,8 +41,8 @@ var twilioNotifier = &twilio{¬ifier.Notification{ Delay: time.Duration(10 * time.Second), Form: []notifier.NotificationForm{{ Type: "text", - Title: "Account Sid", - Placeholder: "Insert your Twilio Account Sid", + Title: "Account SID", + Placeholder: "Insert your Twilio Account SID", DbField: "api_key", Required: true, }, { diff --git a/notifiers/webhook.go b/notifiers/webhook.go index 3fe94222..3a18680b 100644 --- a/notifiers/webhook.go +++ b/notifiers/webhook.go @@ -38,7 +38,7 @@ type webhooker struct { var webhook = &webhooker{¬ifier.Notification{ Method: webhookMethod, Title: "HTTP webhooker", - Description: "Send a custom HTTP request to a specific URL with your own body, headers, and parameters", + Description: "Send a custom HTTP request to a specific URL with your own body, headers, and parameters.", Author: "Hunter Long", AuthorUrl: "https://github.com/hunterlong", Icon: "fas fa-code-branch", @@ -47,14 +47,14 @@ var webhook = &webhooker{¬ifier.Notification{ Type: "text", Title: "HTTP Endpoint", Placeholder: "http://webhookurl.com/JW2MCP4SKQP", - SmallText: "Insert the URL for your HTTP Requests", + SmallText: "Insert the URL for your HTTP Requests.", DbField: "Host", Required: true, }, { Type: "text", Title: "HTTP Method", Placeholder: "POST", - SmallText: "Choose a HTTP method for example: GET, POST, DELETE, or PATCH", + SmallText: "Choose a HTTP method for example: GET, POST, DELETE, or PATCH.", DbField: "Var1", Required: true, }, {