@@ -41,7 +41,7 @@ public class XActions implements ThingActions {
41
41
private @ Nullable XHandler handler ;
42
42
43
43
@ RuleAction (label = "@text/sendPostActionLabel" , description = "@text/sendPostActionDescription" )
44
- public @ ActionOutput (name = "success " , type = "java.lang.Boolean" ) Boolean sendPost (
44
+ public @ ActionOutput (label = "Success " , type = "java.lang.Boolean" ) Boolean sendPost (
45
45
@ ActionInput (name = "text" ) @ Nullable String text ) {
46
46
if (text == null ) {
47
47
logger .warn ("Cannot send Post as text is missing." );
@@ -58,7 +58,7 @@ public class XActions implements ThingActions {
58
58
}
59
59
60
60
@ RuleAction (label = "@text/sendAttachmentPostActionLabel" , description = "@text/sendAttachmentPostActionDescription" )
61
- public @ ActionOutput (name = "success " , type = "java.lang.Boolean" ) Boolean sendPostWithAttachment (
61
+ public @ ActionOutput (label = "Success " , type = "java.lang.Boolean" ) Boolean sendPostWithAttachment (
62
62
@ ActionInput (name = "text" ) @ Nullable String text , @ ActionInput (name = "url" ) @ Nullable String urlString ) {
63
63
if (text == null ) {
64
64
logger .warn ("Cannot send Post as text is missing." );
@@ -79,7 +79,7 @@ public class XActions implements ThingActions {
79
79
}
80
80
81
81
@ RuleAction (label = "@text/sendDirectMessageActionLabel" , description = "@text/sendDirectMessageActionDescription" )
82
- public @ ActionOutput (name = "success " , type = "java.lang.Boolean" ) Boolean sendDirectMessage (
82
+ public @ ActionOutput (label = "Success " , type = "java.lang.Boolean" ) Boolean sendDirectMessage (
83
83
@ ActionInput (name = "recipient" ) @ Nullable String recipient ,
84
84
@ ActionInput (name = "text" ) @ Nullable String text ) {
85
85
if (recipient == null ) {
0 commit comments