summary refs log tree commit diff
path: root/util
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
commitfab28f5f1b3748598ffd4449b3bb9aa59b47083e (patch)
treed2dba3462d6898b48ff1c5445dad569b2d6f2ea7 /util
parentAdd helpful links to issues config (diff)
downloadserver-fab28f5f1b3748598ffd4449b3bb9aa59b47083e.tar.xz
Make the test client togglable
Diffstat (limited to 'util')
-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 } };