想要禁用添加房间,但应该能够显示 converse.js 中的房间

want to disable adding of rooms but should be able to display the rooms in converse.js

如果可以使加入房间的表单不可见并使房间列表占据房间选项卡中的整个 space,谁能帮助我。请帮帮我。

Image showing the part to be made invisble

据我所知,没有配置设置可以做到这一点,但您可以使用 CSS 隐藏相关部分。

像这样:

form.converse-form.add-chatroom {
    display: None;
}

您可能还想在调用 converse.initialize 时将 auto_list_rooms 设置为 true,以便自动显示房间(即无需单击不会显示的按钮隐藏后可见)。