Software /
code /
prosody
Changeset
10646:85585910d468 0.11
mod_muc: Allow control over the server-admins-are-room-owners feature (see #1174)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 13 Feb 2020 14:27:12 +0000 |
parents | 10618:232841373711 |
children | 10647:d1bfda983ffe 10652:0c00274528a4 |
files | plugins/muc/mod_muc.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/mod_muc.lua Fri Jan 24 23:27:49 2020 +0100 +++ b/plugins/muc/mod_muc.lua Thu Feb 13 14:27:12 2020 +0000 @@ -104,7 +104,8 @@ return um_is_admin(jid, module.host); end -do -- Monkey patch to make server admins room owners +if module:get_option_boolean("component_admins_as_room_owners", true) then + -- Monkey patch to make server admins room owners local _get_affiliation = room_mt.get_affiliation; function room_mt:get_affiliation(jid) if is_admin(jid) then return "owner"; end