Skip to content
Snippets Groups Projects
Unverified Commit 6178c1cb authored by R Midhun Suresh's avatar R Midhun Suresh Committed by GitHub
Browse files

Merge pull request #84 from vector-im/fix-doc

Elaborate on what the "disable_composer_until_operator_join" option does
parents 2624d4d8 c84acf66
No related branches found
No related tags found
No related merge requests found
...@@ -14,5 +14,5 @@ ...@@ -14,5 +14,5 @@
"invite_user": "@botuser:your-homeserver.com", "invite_user": "@botuser:your-homeserver.com",
"encrypt_room": false, "encrypt_room": false,
"avatar": "https://link_to_avatar/avatar.png", "avatar": "https://link_to_avatar/avatar.png",
"disable_composer_until_operator_join": true "disable_composer_until_operator_join": false
} }
...@@ -24,7 +24,10 @@ export interface IChatterboxConfig { ...@@ -24,7 +24,10 @@ export interface IChatterboxConfig {
// This option takes precedence over 'auto_join_room' // This option takes precedence over 'auto_join_room'
invite_user: string; invite_user: string;
// If set to true, chatterbox will not let the user send any messages until the operator has joined // If set to true, chatterbox will not let the user send any messages until the operator has joined
// Only applicable when invite_user is configured // Only applicable when invite_user is configured
// The CB user is given a powerlevel that is low enough to prevent them from sending messages
// The invited user must bump the powerlevel for the CB user to 80 after they join
// The composer will be disabled until this happens!
disable_composer_until_operator_join: boolean; disable_composer_until_operator_join: boolean;
// If set to true, the room created for DM is encrypted // If set to true, the room created for DM is encrypted
encrypt_room: boolean; encrypt_room: boolean;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment