Software /
code /
prosody
Diff
plugins/muc/mod_muc.lua @ 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 |
parent | 9626:4d3ab7153153 |
child | 10647:d1bfda983ffe |
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