I have multiple subscriptions set up by various autoruns. It would be useful for debugging purposes to be able to view which subscriptions are active at any given time. Is this possible?
Manage your Google Account.At the top, tap Payments & subscriptions. Tap Manage purchases, Manage subscriptions, or Manage reservations. To see more details, select an item.
Open the Settings app. Tap your name. Tap Subscriptions. Tap the subscription.
Bobby provides a clear overview of all your subscriptions and upcoming bills. This way you'll always know the amount of money spent on subscriptions, which helps you to control your monthly spendings.
Don't have an idea about "active" subscriptions.
But there is an object Meteor.default_connection._subscriptions
that stores information of all the subscriptions that have been subscribed till the given time.
var subs = Meteor.default_connection._subscriptions; //all the subscriptions that have been subscribed. Object.keys(subs).forEach(function(key) { console.log(subs[key]); // see them in console. });
Not exactly what you want though.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With