diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-03 13:40:29 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-03 13:40:29 +0100 |
commit | 505b635f61d0d71d30d1e05ed67d5292e2cc57ce (patch) | |
tree | b665a7aa9988ae7d5c469708680aba8cdbdd3894 /plugins | |
parent | a9744cfc9999f5459021d741932018f20f53ffc9 (diff) | |
download | prosody-505b635f61d0d71d30d1e05ed67d5292e2cc57ce.tar.gz prosody-505b635f61d0d71d30d1e05ed67d5292e2cc57ce.zip |
mod_groups: Add a public function other modules can use to determine if a JID belongs to a given group
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_groups.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mod_groups.lua b/plugins/mod_groups.lua index 199925f9..9b39b16b 100644 --- a/plugins/mod_groups.lua +++ b/plugins/mod_groups.lua @@ -121,3 +121,8 @@ end function module.unload() datamanager.remove_callback(remove_virtual_contacts); end + +-- Public for other modules to access +function group_contains(group_name, jid) + return groups[group_name][jid]; +end |