Software /
code /
prosody
Changeset
3940:d55e67e4191a
mod_pubsub: Add get_subscriptions and get_subscriptions_other capabilities to default affiliations
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 22 Dec 2010 03:49:23 +0000 |
parents | 3939:b66e9a7593b6 |
children | 3941:526624f7852e |
files | plugins/mod_pubsub.lua |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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;