Shared CloudCode Tasks
Overview
{
"name": "shared",
"cloudcode": {
"shared": true,
"enabled": true
}
}Example
module.exports = {
// put method and values to share here
secret: 'foo',
add: function add(a, b) {
return a + b;
}
};Last updated