diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-22 03:48:51 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-22 03:48:51 +0000 |
commit | 174bc06147e6d263e1e2b2c348beefd3e7e42ef9 (patch) | |
tree | 4a502bd9ce4a18f13c0d7d055b9e61b925cd39bd /plugins | |
parent | 272ea7b6d19e154a9a1bb11fa825d6c7b43f9d37 (diff) | |
download | prosody-174bc06147e6d263e1e2b2c348beefd3e7e42ef9.tar.gz prosody-174bc06147e6d263e1e2b2c348beefd3e7e42ef9.zip |
mod_pubsub: Add add_subscription and get_subscriptions to feature_map
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pubsub.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 0cc34490..09845962 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -187,6 +187,8 @@ local feature_map = { retract = { "delete-items", "retract-items" }; publish = { "publish" }; get_items = { "retrieve-items" }; + add_subscription = { "subscribe" }; + get_subscriptions = { "retrieve-subscriptions" }; }; local function add_disco_features_from_service(disco, service) |