Is it possible to save the device token without using “ionic users”?
This is the Code im copied from an example in the docs:
// Push
var push = new Ionic.Push({
"debug": true
});
push.register(function(token) {
console.log("Device token:",token.token);
push.saveToken(token); // persist the token in the Ionic Platform
});
a device token being generated, but where is it stored on the ionic platform?
my target is to send push messages to all users, not so specific ones.