diff options
-rw-r--r-- | plugins/mod_pubsub.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 09845962..bb2f0059 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -292,11 +292,13 @@ set_service(pubsub.new({ 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 @@ set_service(pubsub.new({ 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; |