You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mr...@apache.org on 2018/02/08 21:59:07 UTC

[incubator-openwhisk-wskdeploy] branch master updated: Adding examples of web action annotations (#719)

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

mrutkowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git


The following commit(s) were added to refs/heads/master by this push:
     new 9b26295  Adding examples of web action annotations (#719)
9b26295 is described below

commit 9b26295dc6a40488b45c6c1a64dffc071286ceec
Author: Priti Desai <pd...@us.ibm.com>
AuthorDate: Thu Feb 8 13:59:04 2018 -0800

    Adding examples of web action annotations (#719)
    
    * Adding web action annotations
    
    * adding web action with custom options annotation
---
 tests/src/integration/webaction/manifest.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/tests/src/integration/webaction/manifest.yml b/tests/src/integration/webaction/manifest.yml
index 44568d0..b57871d 100644
--- a/tests/src/integration/webaction/manifest.yml
+++ b/tests/src/integration/webaction/manifest.yml
@@ -26,6 +26,27 @@ packages:
                 version: 1.0
                 function: src/greeting.js
                 runtime: nodejs:6
+            greeting-web-action-with-auth:
+                web-export: true
+                version: 1.0
+                function: src/greeting.js
+                runtime: nodejs:6
+                annotations:
+                    require-whisk-auth: true
+            greeting-web-action-final:
+                web-export: true
+                version: 1.0
+                function: src/greeting.js
+                runtime: nodejs:6
+                annotations:
+                    final: true
+            greeting-web-action-with-custom-options:
+                web-export: true
+                version: 1.0
+                function: src/greeting.js
+                runtime: nodejs:6
+                annotations:
+                    web-custom-options: true
         triggers:
             webActionTrigger:
         rules:

-- 
To stop receiving notification emails like this one, please contact
mrutkowski@apache.org.