Clarify that Threema Gateway Alerts support only Basic IDs (#34828)
Threema Gateway supports two types of IDs: Basic IDs (where the encryption is managed by the API server) and End-to-End IDs (where the keys are managed by the user). This plugin currently does not support End-to-End IDs (since it's much more complex to implement, because the encryption needs to happen locally). Add a few clarifications to the UI. Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
co-authored by
Arve Knudsen
parent
35a4b2c651
commit
83a83de10a
@@ -19,7 +19,7 @@ func init() {
|
||||
alerting.RegisterNotifier(&alerting.NotifierPlugin{
|
||||
Type: "threema",
|
||||
Name: "Threema Gateway",
|
||||
Description: "Sends notifications to Threema using the Threema Gateway",
|
||||
Description: "Sends notifications to Threema using Threema Gateway (Basic IDs)",
|
||||
Heading: "Threema Gateway settings",
|
||||
Info: "Notifications can be configured for any Threema Gateway ID of type \"Basic\". End-to-End IDs are not currently supported." +
|
||||
"The Threema Gateway ID can be set up at https://gateway.threema.ch/.",
|
||||
@@ -30,7 +30,7 @@ func init() {
|
||||
Element: alerting.ElementTypeInput,
|
||||
InputType: alerting.InputTypeText,
|
||||
Placeholder: "*3MAGWID",
|
||||
Description: "Your 8 character Threema Gateway ID (starting with a *).",
|
||||
Description: "Your 8 character Threema Gateway Basic ID (starting with a *).",
|
||||
PropertyName: "gateway_id",
|
||||
Required: true,
|
||||
ValidationRule: "\\*[0-9A-Z]{7}",
|
||||
|
||||
@@ -725,7 +725,7 @@ func GetAvailableNotifiers() []*alerting.NotifierPlugin {
|
||||
{
|
||||
Type: "threema",
|
||||
Name: "Threema Gateway",
|
||||
Description: "Sends notifications to Threema using the Threema Gateway",
|
||||
Description: "Sends notifications to Threema using Threema Gateway (Basic IDs)",
|
||||
Heading: "Threema Gateway settings",
|
||||
Info: "Notifications can be configured for any Threema Gateway ID of type \"Basic\". End-to-End IDs are not currently supported." +
|
||||
"The Threema Gateway ID can be set up at https://gateway.threema.ch/.",
|
||||
@@ -735,7 +735,7 @@ func GetAvailableNotifiers() []*alerting.NotifierPlugin {
|
||||
Element: alerting.ElementTypeInput,
|
||||
InputType: alerting.InputTypeText,
|
||||
Placeholder: "*3MAGWID",
|
||||
Description: "Your 8 character Threema Gateway ID (starting with a *).",
|
||||
Description: "Your 8 character Threema Gateway Basic ID (starting with a *).",
|
||||
PropertyName: "gateway_id",
|
||||
Required: true,
|
||||
ValidationRule: "\\*[0-9A-Z]{7}",
|
||||
|
||||
Reference in New Issue
Block a user