mod_pubsub: Add the list of affiliations to reply
authorKim Alvefur <zash@zash.se>
Tue, 26 Jun 2018 19:36:23 +0200
changeset 8938 a825ef6de45a
parent 8937 365bcf899093
child 8939 7b75c7ec926e
mod_pubsub: Add the list of affiliations to reply
plugins/mod_pubsub/pubsub.lib.lua
--- a/plugins/mod_pubsub/pubsub.lib.lua	Tue Jun 26 19:34:35 2018 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Tue Jun 26 19:36:23 2018 +0200
@@ -475,6 +475,10 @@
 		:tag("pubsub", { xmlns = xmlns_pubsub_owner })
 			:tag("affiliations", { node = node });
 
+	for jid, affiliation in pairs(node_obj.affiliations) do
+		reply:tag("affiliation", { jid = jid, affiliation = affiliation }):up();
+	end
+
 	origin.send(reply);
 	return true;
 end