diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-02-13 14:27:12 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-02-13 14:27:12 +0000 |
commit | 239bd598467f2e4b2768a71a2b2fe708f34181a3 (patch) | |
tree | bd9d3b1feb19e4c3b263b7307c633a28de4a3c61 /plugins/muc | |
parent | c17d65758ed1b357c1b3cf2a8e4af773f301c2cd (diff) | |
download | prosody-239bd598467f2e4b2768a71a2b2fe708f34181a3.tar.gz prosody-239bd598467f2e4b2768a71a2b2fe708f34181a3.zip |
mod_muc: Allow control over the server-admins-are-room-owners feature (see #1174)
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/mod_muc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 954bae92..b9c7c859 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -104,7 +104,8 @@ local function is_admin(jid) 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 |