I´m implementing IonicPush to my app. The push gets sent without errors.
The device token is saved:
$ionicPush.register().then(function(t) {
return $ionicPush.saveToken(t);
}).then(function(t) {
console.log('Token saved:', t.token);
});
The console log is getting echoed. But where is this token saved? I´m not using Ionic Users or smth. I´m sending the push with ionic.io backend.
Could anyone help?