diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-02-06 17:08:46 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-02-06 17:08:46 +0000 |
commit | 857c61ffd3b8411ca27733d698d095ccb0d4c996 (patch) | |
tree | 6f69ee1a2a19fcb821c5ba763e0fb42527833162 /core | |
parent | 839498eb5d7f275c21e0f63939b79bf0ff1f5fc1 (diff) | |
download | prosody-857c61ffd3b8411ca27733d698d095ccb0d4c996.tar.gz prosody-857c61ffd3b8411ca27733d698d095ccb0d4c996.zip |
mod_muc: Integrate support for vcards/avatars on MUC rooms
This was previously served by a community module (mod_vcard_muc).
It can be disabled by setting `vcard_muc = false` in the config.
Diffstat (limited to 'core')
-rw-r--r-- | core/features.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/features.lua b/core/features.lua index cd6618db..d8cefe74 100644 --- a/core/features.lua +++ b/core/features.lua @@ -10,6 +10,8 @@ return { "mod_flags"; -- mod_cloud_notify bundled "mod_cloud_notify"; + -- mod_muc has built-in vcard support + "muc_vcard"; -- Roles, module.may and per-session authz "permissions"; -- prosody.* namespace |