blob: d8580f7be81613ad5e56741ebf395630e9bf0f17 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more contributor
// license agreements; and to You under the Apache License, Version 2.0.
var openwhisk = require('openwhisk');
function main(params) {
console.log(JSON.stringify(params));
var name = params.messages[0].value;
var ow = openwhisk({ignore_certs: true});
return ow.triggers.create({name: name});
}