diff options
author | Thesourtimes <cckhmck@gmail.com> | 2021-12-15 05:41:21 +0300 |
---|---|---|
committer | Thesourtimes <cckhmck@gmail.com> | 2021-12-15 05:41:21 +0300 |
commit | 87f7c9b7a3de0db32e9f49cd1781efe2f8300632 (patch) | |
tree | 98b4c8c6def2380ed0841bf3b37ea2dd16349953 /util/src/entities/Config.ts | |
parent | Add helpful links to issues config (diff) | |
download | server-87f7c9b7a3de0db32e9f49cd1781efe2f8300632.tar.xz |
Make the test client togglable
Diffstat (limited to 'util/src/entities/Config.ts')
-rw-r--r-- | util/src/entities/Config.ts | 6 |
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 } }; |