Diff

util/pubsub.lua @ 4367:98b258b7d5dc

util.pubsub: Remove access checking from remove_all_subscriptions (temporarily?)
author Matthew Wild <mwild1@gmail.com>
date Tue, 30 Aug 2011 17:51:36 -0400
parent 4366:b6c18cadd3ec
child 5181:1e9508ae44cc
line wrap: on
line diff
--- a/util/pubsub.lua	Tue Aug 30 15:48:16 2011 -0400
+++ b/util/pubsub.lua	Tue Aug 30 17:51:36 2011 -0400
@@ -172,20 +172,6 @@
 end
 
 function service:remove_all_subscriptions(actor, jid)
-	-- Access checking
-	local cap;
-	if actor == true or jid == actor or self:jids_equal(actor, jid) then
-		cap = "unsubscribe";
-	else
-		cap = "unsubscribe_other";
-	end
-	if not self:may(node, actor, cap) then
-		return false, "forbidden";
-	end
-	if not self:may(node, jid, "be_unsubscribed") then
-		return false, "forbidden";
-	end
-	--
 	local normal_jid = self.config.normalize_jid(jid);
 	local subs = self.subscriptions[normal_jid]
 	subs = subs and subs[jid];