Software /
code /
prosody
Changeset
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 |
parents | 4366:b6c18cadd3ec |
children | 4368:916834f22d1b 4371:8399b5b57046 |
files | util/pubsub.lua |
diffstat | 1 files changed, 0 insertions(+), 14 deletions(-) [+] |
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];