Update comment after more tests.

This commit is contained in:
John Livingston 2021-05-11 17:31:20 +02:00
parent 27544a2612
commit c9eb3ffda4
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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.

View File

@ -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')
}