You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by dg...@apache.org on 2022/08/25 07:18:55 UTC

[unomi] branch master updated: UNOMI-608 - Updated documentation as per feedback (#478)

This is an automated email from the ASF dual-hosted git repository.

dgriffon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/master by this push:
     new 957bbdbf4 UNOMI-608 - Updated documentation as per feedback (#478)
957bbdbf4 is described below

commit 957bbdbf4e6a8db45bb02ebeb517d210a50fe012
Author: Francois G <fg...@jahia.com>
AuthorDate: Thu Aug 25 03:18:51 2022 -0400

    UNOMI-608 - Updated documentation as per feedback (#478)
---
 manual/src/main/asciidoc/configuration.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/manual/src/main/asciidoc/configuration.adoc b/manual/src/main/asciidoc/configuration.adoc
index 357ca13c2..eb611f301 100644
--- a/manual/src/main/asciidoc/configuration.adoc
+++ b/manual/src/main/asciidoc/configuration.adoc
@@ -466,7 +466,7 @@ The first step consists in creating the groovy script on your filesystem, start
 [source,groovy]
 ----
 @Action(id = "helloWorldGroovyAction",
-        actionExecutor = "groovy:helloWorldAction")
+        actionExecutor = "groovy:helloWorldAction",
         parameters = [@Parameter(id = "location", type = "string", multivalued = false)])
 def execute() {
     logger.info("Hello {}", action.getParameterValues().get("location"))
@@ -507,7 +507,7 @@ curl -X POST 'http://localhost:8181/cxs/rules' \
      "parameterValues": {
        "location": "world!"
      },
-     "type": "helloWorldAction"
+     "type": "helloWorldGroovyAction"
    }
  ]
 }'