As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
androidsvtech
I have create collection and saving the row after saving the data into collection , i want to send push messages to my users.
function onPostSave(request, response, modules){
var push = modules.push, collectionAccess = modules.collectionAccess;
collectionAccess.collection('user').find("username:usha", function (err , userColl) {
if (err) {
} else {
userColl.forEach(function (user) {
push.send(user, "People who are named are awesome!");
return response.complete(201);
});
}
}
);
}