mod_pubsub: Comment out data persistence for now (weird without config persistence)
authorKim Alvefur <zash@zash.se>
Wed, 13 Sep 2017 18:46:39 +0200
changeset 8224 4989a625419a
parent 8223 a1b0fa38fca7
child 8238 7d9a2c200736
mod_pubsub: Comment out data persistence for now (weird without config persistence)
plugins/mod_pubsub/mod_pubsub.lua
--- a/plugins/mod_pubsub/mod_pubsub.lua	Sat Jul 29 13:09:57 2017 +0200
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Wed Sep 13 18:46:39 2017 +0200
@@ -21,7 +21,9 @@
 module:add_identity("pubsub", "service", pubsub_disco_name);
 module:add_feature("http://jabber.org/protocol/pubsub");
 
+--[[ TODO Disabled until config persistence is implemented
 local archive = module:open_store("pubsub", "archive");
+--]]
 
 function handle_pubsub_iq(event)
 	local origin, stanza = event.origin, event.stanza;
@@ -38,9 +40,11 @@
 	end
 end
 
+--[[ TODO Disabled until config persistence is implemented
 local function simple_itemstore(config, node)
 	return lib_pubsub.simple_itemstore(archive, config, nil, node, expose_publisher);
 end
+--]]
 
 function simple_broadcast(kind, node, jids, item, actor)
 	if item then
@@ -230,7 +234,9 @@
 		autocreate_on_publish = autocreate_on_publish;
 		autocreate_on_subscribe = autocreate_on_subscribe;
 
+		--[[ TODO Disabled until config persistence is implemented
 		itemstore = simple_itemstore;
+		--]]
 		broadcaster = simple_broadcast;
 		get_affiliation = get_affiliation;