Skip to content

Commit

Permalink
Merge pull request #84 from vector-im/fix-doc
Browse files Browse the repository at this point in the history
Elaborate on what the "disable_composer_until_operator_join" option does
  • Loading branch information
MidhunSureshR authored Jul 27, 2022
2 parents 2624d4d + c84acf6 commit 6178c1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"invite_user": "@botuser:your-homeserver.com",
"encrypt_room": false,
"avatar": "https://link_to_avatar/avatar.png",
"disable_composer_until_operator_join": true
"disable_composer_until_operator_join": false
}
5 changes: 4 additions & 1 deletion src/types/IChatterboxConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ export interface IChatterboxConfig {
// This option takes precedence over 'auto_join_room'
invite_user: string;
// 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;
// If set to true, the room created for DM is encrypted
encrypt_room: boolean;
Expand Down

0 comments on commit 6178c1c

Please sign in to comment.