summaryrefslogtreecommitdiffstats
path: root/src/constants.js
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-08-07 16:37:19 +0200
committerJoas Schilling <coding@schilljs.com>2023-08-08 11:00:43 +0200
commit6d90f064454cbf6e39e0c1ca8efd89d653aee9aa (patch)
treee2d95f0a20168123004179f61159a9eb2564a980 /src/constants.js
parent957851e9f1d58c958eb620dd8e259516f8a0044a (diff)
add section in ConversationSettingsDialog.vue for enabling / disabling bots
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index 1db1be1e3..09b05f291 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -216,3 +216,11 @@ export const VIRTUAL_BACKGROUND = {
DEFAULT: 10,
},
}
+
+export const BOT = {
+ STATE: {
+ DISABLED: 0,
+ ENABLED: 1,
+ FORCE_ENABLED: 2,
+ },
+}