mod_pubsub: Fix feature advertising of config-node and retrieve-default
authorKim Alvefur <zash@zash.se>
Tue, 17 Oct 2017 03:43:57 +0200
changeset 8331 29ef191c7bf9
parent 8330 0b561f8bc790
child 8332 83bab3c84671
mod_pubsub: Fix feature advertising of config-node and retrieve-default It confused pubsub.lib handler names with util.pubsub service methods
plugins/mod_pubsub/mod_pubsub.lua
--- a/plugins/mod_pubsub/mod_pubsub.lua	Tue Oct 17 00:07:34 2017 +0200
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Tue Oct 17 03:43:57 2017 +0200
@@ -81,8 +81,8 @@
 	get_items = { "retrieve-items" };
 	add_subscription = { "subscribe" };
 	get_subscriptions = { "retrieve-subscriptions" };
-	set_configure = { "config-node" };
-	get_default = { "retrieve-default" };
+	set_node_config = { "config-node" };
+	node_defaults = { "retrieve-default" };
 };
 
 local function add_disco_features_from_service(service)