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 | 54ecdb5cd0f5ed435de571a3795e2648c9145873 (patch) | |
tree | 2b3c09fcbc5550d9a250ad9dfdd9a37661b6570c /plugins/muc/util.lib.lua | |
parent | e6400cd0d86b2d76d9bb737d9b86f063acd3dca0 (diff) | |
download | prosody-54ecdb5cd0f5ed435de571a3795e2648c9145873.tar.gz prosody-54ecdb5cd0f5ed435de571a3795e2648c9145873.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; |