From c9eb3ffda4502e93a6bec5a672333681c9944954 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Tue, 11 May 2021 17:31:20 +0200 Subject: [PATCH] Update comment after more tests. --- CHANGELOG.md | 2 +- ROADMAP.md | 2 +- server/lib/prosody/config/content.ts | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b75cdbaf..2c0bd6ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ * Builtin prosody use a working dir provided by Peertube (needs Peertube >= 3.2.0) * Starting with Peertube 3.2.0, builtin prosody save room history on server. So when a user connects, he can get previously send messages. -* Starting with Peertube 3.2.0, builtin prosody also activate mod_muc_moderation, enabling moderators to moderate messages. NB: unfortunately it requires Prosody>=0.11.8, which is not released yet (ability to change overwrite old messages on internal storages). +* Starting with Peertube 3.2.0, builtin prosody also activate mod_muc_moderation, enabling moderators to moderate messages. ### Fixes diff --git a/ROADMAP.md b/ROADMAP.md index 945f188d..b4df5f80 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -18,7 +18,7 @@ This roadmap is given as an indication. It will be updated as we go along accord [ ] | [ ] | Builtin Prosody | Check with yunohost how to integrate. [ ] | [ ] | Documentation | Rewrite documentation for more clarity. Add screenshots. Separate user and admin documentation. [ ] | [ ] | ConverseJS | UI: make custom templates, for a better UI/UX. Autoshow muc participants depending on the chat window width. -[x] | [ ] | Builtin Prosody | Allow moderators to delete messages (mod_muc_moderation). NB: Prosody dont allow it for now on «internal» storage, will be available in next version (0.11.8?). | Not Released yet +[x] | [ ] | Builtin Prosody | Allow moderators to delete messages (mod_muc_moderation). | Not Released yet [ ] | [ ] | ConverseJS | For anonymous user, automatically log in with a random nickname (and allow to change afterward) [ ] | [x] | JS | Modernise code to use new placeholders provided by Peertube 3.2.0 (with or without backward compatibility) [ ] | [x] | Settings | Replace some checkbox by a select (for the webchat mode). Migrate old checkbox values. diff --git a/server/lib/prosody/config/content.ts b/server/lib/prosody/config/content.ts index 7b18fb6c..a3fc26be 100644 --- a/server/lib/prosody/config/content.ts +++ b/server/lib/prosody/config/content.ts @@ -225,6 +225,8 @@ class ProsodyConfigContent { this.muc.set('muc_log_cleanup_interval', 4 * 60 * 60) // We can also use mod_muc_moderation + // NB: for now Prosody has a partial support of this feature with «internal» storage. + // It will be available in next version (0.11.8?). this.muc.add('modules_enabled', 'muc_moderation') }