Ionic Push without Users

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.

@andie91 I am not sure if this is what you want but you can create a service and on register call that and save the tokens in your database. From there you will be able to create your admin page to send notifications to the registered devices. See this http://mcgivery.com/ionic-using-factories-and-web-services-for-dynamic-data/ for your reference. Hope this helps