# HG changeset patch # User Matthew Wild # Date 1292989763 0 # Node ID d55e67e4191a69e97499b95288f0caf6e84ec449 # Parent b66e9a7593b66c06cbbd2f4a255a8a7dfe268ef2 mod_pubsub: Add get_subscriptions and get_subscriptions_other capabilities to default affiliations diff -r b66e9a7593b6 -r d55e67e4191a plugins/mod_pubsub.lua --- a/plugins/mod_pubsub.lua Wed Dec 22 03:48:51 2010 +0000 +++ b/plugins/mod_pubsub.lua Wed Dec 22 03:49:23 2010 +0000 @@ -292,11 +292,13 @@ subscribe = true; unsubscribe = true; get_subscription = true; + get_subscriptions = true; get_items = true; subscribe_other = false; unsubscribe_other = false; get_subscription_other = false; + get_subscriptions_other = false; be_subscribed = true; be_unsubscribed = true; @@ -312,12 +314,14 @@ subscribe = true; unsubscribe = true; get_subscription = true; + get_subscriptions = true; get_items = true; subscribe_other = true; unsubscribe_other = true; get_subscription_other = true; + get_subscriptions_other = true; be_subscribed = true; be_unsubscribed = true;