Software /
code /
prosody
Changeset
1752:4db786919805
MUC: Added kicking support.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Mon, 07 Sep 2009 20:48:16 +0500 |
parents | 1751:55ee6e792e3e |
children | 1753:a84901db4085 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Mon Sep 07 20:43:25 2009 +0500 +++ b/plugins/muc/muc.lib.lua Mon Sep 07 20:48:16 2009 +0500 @@ -488,6 +488,7 @@ return session and session.role or nil; end function room_mt:set_role(actor, nick, role, callback) + if role == "none" then role = nil; end if role and role ~= "moderator" and role ~= "participant" and role ~= "visitor" then return nil, "modify", "not-acceptable"; end if self:get_affiliation(actor) ~= "owner" then return nil, "cancel", "not-allowed"; end local occupant = self._occupants[nick];