pull/130/head v0.80.38
hunterlong 2019-01-17 14:19:18 -08:00
parent 19b89ebb51
commit 1af2e1b929
2 changed files with 5 additions and 5 deletions

View File

@ -41,8 +41,8 @@ var twilioNotifier = &twilio{&notifier.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,
}, {

View File

@ -38,7 +38,7 @@ type webhooker struct {
var webhook = &webhooker{&notifier.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{&notifier.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,
}, {