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

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


The following commit(s) were added to refs/heads/master by this push:
     new 75fa8ff  Remove backslash for package name (#82)
75fa8ff is described below

commit 75fa8ff6385a8e8abca97a177b4be614dbc09265
Author: Dan Lavine <[email protected]>
AuthorDate: Tue Jul 11 13:20:41 2017 +0000

    Remove backslash for package name (#82)
---
 packages/installCatalog.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/installCatalog.sh b/packages/installCatalog.sh
index 3bb07da..06ce2fe 100755
--- a/packages/installCatalog.sh
+++ b/packages/installCatalog.sh
@@ -34,13 +34,13 @@ export WSK_CONFIG_FILE= # override local property file to 
avoid namespace clashe
 
 echo Installing pushnotifications package.
 
-$WSK_CLI -i --apihost "$APIHOST"  package update --auth "$AUTH"  --shared yes 
"/pushnotifications" \
+$WSK_CLI -i --apihost "$APIHOST"  package update --auth "$AUTH"  --shared yes 
"pushnotifications" \
 -a description "This package supports sending push notifications to your 
mobile device, using the IBM Bluemix Push Notifications service." \
 -a parameters '[ {"name":"appGuid", "required":true, "bindTime":true, 
"description":"Bluemix application GUID"}, {"name":"appSecret", 
"required":true, "bindTime":true, "type":"password", "description":"Bluemix 
Push Service Secret"}]' \
 -a prettyName "Push Notifications" \
 -p bluemixServiceName 'imfpush'
 
-$WSK_CLI -i --apihost "$APIHOST" action update --auth "$AUTH" 
"/pushnotifications/webhook" "$PACKAGE_HOME/feeds/webhook.js" \
+$WSK_CLI -i --apihost "$APIHOST" action update --auth "$AUTH" 
"pushnotifications/webhook" "$PACKAGE_HOME/feeds/webhook.js" \
 -a feed true \
 -a description 'pushnotifications feed' \
 -a parameters '[ {"name":"appGuid", "required":true, "bindTime":true, 
"description":"Bluemix application GUID"}, {"name":"appSecret", 
"required":true, "bindTime":true, "type":"password", "description":"Bluemix 
Push Service Secret"},{"name":"events", "required":true, "description":"Name of 
the event user want to subscribe"} ]' \
@@ -48,7 +48,7 @@ $WSK_CLI -i --apihost "$APIHOST" action update --auth "$AUTH" 
"/pushnotification
 -a sampleOutput '{"tagName": "tagName","eventType": 
"onDeviceRegister","applicationId": "xxx-xxx-xx"}'
 
 
-$WSK_CLI -i --apihost "$APIHOST" action update --auth "$AUTH" 
"/pushnotifications/sendMessage" "$PACKAGE_HOME/actions/sendMessage.js" \
+$WSK_CLI -i --apihost "$APIHOST" action update --auth "$AUTH" 
"pushnotifications/sendMessage" "$PACKAGE_HOME/actions/sendMessage.js" \
 -a description 'Send push notification to all application users or to a 
specific set of devices' \
 -a parameters '[ {"name":"appGuid", "required":true, "bindTime":true, 
"description":"Bluemix application GUID"}, {"name":"appSecret", 
"required":true, "bindTime":true, "type":"password", "description":"Bluemix 
Push Service Secret"}, {"name":"text", "required":true, "description":"The 
notification message to be shown to the user"}, {"name":"url", 
"required":false, "description":"An optional URL that can be sent along with 
the alert"}, {"name":"deviceIds", "required":false, "description":" [...]
 -a sampleInput '{"appGuid":"xxx-xxx-xx", "appSecret":"yyy-yyy-yyy", "text":"hi 
there"}' \

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to