summary refs log tree commit diff
path: root/util/src
diff options
context:
space:
mode:
authorThesourtimes <cckhmck@gmail.com>2021-12-15 05:41:21 +0300
committerThesourtimes <cckhmck@gmail.com>2021-12-15 05:41:21 +0300
commit87f7c9b7a3de0db32e9f49cd1781efe2f8300632 (patch)
tree98b4c8c6def2380ed0841bf3b37ea2dd16349953 /util/src
parentAdd helpful links to issues config (diff)
downloadserver-87f7c9b7a3de0db32e9f49cd1781efe2f8300632.tar.xz
Make the test client togglable
Diffstat (limited to 'util/src')
-rw-r--r--util/src/entities/Config.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/src/entities/Config.ts b/util/src/entities/Config.ts

index 492baa4c..079aa8bb 100644 --- a/util/src/entities/Config.ts +++ b/util/src/entities/Config.ts
@@ -172,6 +172,9 @@ export interface ConfigValue { allowTemplateCreation: Boolean; allowDiscordTemplates: Boolean; allowRaws: Boolean; + }, + client: { + useTestClient: Boolean; } } @@ -346,5 +349,8 @@ export const DefaultConfigOptions: ConfigValue = { allowTemplateCreation: true, allowDiscordTemplates: true, allowRaws: false + }, + client: { + useTestClient: true } };