From 3d9d6da71fe6325ca59b1dc59d6caa3b50a8f857 Mon Sep 17 00:00:00 2001
From: RMidhunSuresh <hi@midhun.dev>
Date: Wed, 27 Jul 2022 11:43:49 +0530
Subject: [PATCH] Elaborate on what the option does

---
 src/types/IChatterboxConfig.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/types/IChatterboxConfig.ts b/src/types/IChatterboxConfig.ts
index c10734e..78aeffa 100644
--- a/src/types/IChatterboxConfig.ts
+++ b/src/types/IChatterboxConfig.ts
@@ -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;
-- 
GitLab