Software /
code /
prosody-modules
Comparison
mod_groups_internal/mod_groups_internal.lua @ 6131:f80db102fdb1
mod_groups_internal: Disable MUC integration by default
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 01 Jan 2025 14:15:20 +0000 |
parent | 5848:865c77b5c6dc |
child | 6175:e2d130104b98 |
comparison
equal
deleted
inserted
replaced
6130:5a0e47ad7d6b | 6131:f80db102fdb1 |
---|---|
9 | 9 |
10 local group_info_store = module:open_store("group_info", "keyval+"); | 10 local group_info_store = module:open_store("group_info", "keyval+"); |
11 local group_members_store = module:open_store("groups"); | 11 local group_members_store = module:open_store("groups"); |
12 local group_memberships = module:open_store("groups", "map"); | 12 local group_memberships = module:open_store("groups", "map"); |
13 | 13 |
14 local muc_host_name = module:get_option("groups_muc_host", "groups."..host); | 14 local muc_host_name = module:get_option("groups_muc_host"); |
15 local muc_host = nil; | 15 local muc_host = nil; |
16 | 16 |
17 local is_contact_subscribed = rostermanager.is_contact_subscribed; | 17 local is_contact_subscribed = rostermanager.is_contact_subscribed; |
18 | 18 |
19 -- Make a *one-way* subscription. User will see when contact is online, | 19 -- Make a *one-way* subscription. User will see when contact is online, |