Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to view all active subscriptions

Tags:

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?

like image 688
tomconnors Avatar asked Jun 20 '13 18:06

tomconnors


People also ask

Is there a way I can see all of my subscriptions?

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.

How do I see all paid subscriptions on Iphone?

Open the Settings app. Tap your name. Tap Subscriptions. Tap the subscription.

What app keeps track of all my subscription payments?

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.


1 Answers

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.

like image 167
sohel khalifa Avatar answered Sep 30 '22 22:09

sohel khalifa