diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-31 13:13:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-31 13:13:05 +0000 |
commit | c19a8ef9ff319d31991e1dd8a23bdd9efb9389bb (patch) | |
tree | 2b3c09fcbc5550d9a250ad9dfdd9a37661b6570c /plugins/muc/util.lib.lua | |
parent | 18a51e456f7153e3f34f41d08be3c81948492a3e (diff) | |
download | prosody-c19a8ef9ff319d31991e1dd8a23bdd9efb9389bb.tar.gz prosody-c19a8ef9ff319d31991e1dd8a23bdd9efb9389bb.zip |
MUC: Announce affiliation changes for JIDs that are not in the room
Diffstat (limited to 'plugins/muc/util.lib.lua')
-rw-r--r-- | plugins/muc/util.lib.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/muc/util.lib.lua b/plugins/muc/util.lib.lua index 16deb543..d03b4d6b 100644 --- a/plugins/muc/util.lib.lua +++ b/plugins/muc/util.lib.lua @@ -55,4 +55,13 @@ function _M.filter_muc_x(stanza) return stanza:maptags(muc_x_filter); end +function _M.only_with_min_role(role) + local min_role_value = _M.valid_roles[role]; + return function (nick, occupant) + if _M.valid_roles[occupant.role or "none"] >= min_role_value then + return true; + end + end; +end + return _M; |