util.pubsub: Remove access checking from remove_all_subscriptions (temporarily?)
authorMatthew Wild <mwild1@gmail.com>
Tue, 30 Aug 2011 17:51:36 -0400
changeset 4367 98b258b7d5dc
parent 4366 b6c18cadd3ec
child 4368 916834f22d1b
child 4371 8399b5b57046
util.pubsub: Remove access checking from remove_all_subscriptions (temporarily?)
util/pubsub.lua
--- 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];