0

I would like to know who subscribes to a particular Wiki page. How do I get that information?

flag

1 Answer

1

Generally, we've always viewed a user's subscriptions as their business and thus don't make that information readily available. There is a plugin available that should display what you're looking for though: http://www.fogcreek.com/FogBugz/Plugins/plugin.aspx?ixPlugin=21

That particular plugin is from a (currently) unverified plugin author though, so be sure to back up your database before using it.

Another option (if you have direct access to the database) would be to run the following query after replacing WIKI_ARTICLE_ID with the article you're interested in:

SELECT Person.sFullName FROM Person INNER JOIN Subscriptions on Person.ixPerson = Subscriptions.ixPerson WHERE ixWikiPage = WIKI_ARTICLE_ID;

A wiki article's id is the number following the W in the URL when you view the article. For example, http://yourdomain.com/default.asp?W1234 would have an ixWikiPage of 1234.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.